1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
//! An interval set/map library inspired by Boost.Icl.
//!
//! This crate provides two main data structures:
//!
//! - [`IntervalSet`]: A collection of non-overlapping intervals with automatic merging
//! - [`IntervalMap`]: A mapping from intervals to values with split/merge behavior
//!
//! # Examples
//!
//! ## IntervalSet
//!
//! ```
//! use intervalmap::IntervalSet;
//!
//! let mut set = IntervalSet::new();
//! set.insert(0..10);
//! set.insert(5..15); // Merges with [0, 10) to form [0, 15)
//!
//! assert!(set.contains(7));
//! assert!(!set.contains(20));
//! ```
//!
//! ## IntervalMap
//!
//! ```
//! use intervalmap::IntervalMap;
//!
//! let mut map = IntervalMap::new();
//! map.insert(0..10, "first");
//! map.insert(5..15, "second"); // Splits: [0,5)->"first", [5,15)->"second"
//!
//! assert_eq!(map.get(3), Some(&"first"));
//! assert_eq!(map.get(7), Some(&"second"));
//! ```
//!
//! ## Using Macros
//!
//! ```
//! use intervalmap::{interval_set, interval_map};
//!
//! let set = interval_set![0..10, 20..30];
//! assert!(set.contains(5));
//!
//! let map = interval_map![(0..10) => "a", (20..30) => "b"];
//! assert_eq!(map.get(5), Some(&"a"));
//! ```
pub use IndexType;
pub use Interval;
pub use ;
pub use IntervalSet;
/// Creates an [`IntervalSet`] from a list of ranges.
///
/// # Examples
///
/// ```
/// use intervalmap::interval_set;
///
/// // Empty set
/// let empty: intervalmap::IntervalSet<u32> = interval_set!{};
/// assert!(empty.is_empty());
///
/// // Set with intervals
/// let set = interval_set!{ 0..10, 20..30, 40..50 };
/// assert!(set.contains(5));
/// assert!(set.contains(25));
/// assert!(!set.contains(15));
///
/// // With explicit index type
/// let set = interval_set!{ [u64] 0..10, 20..30 };
/// ```
/// Creates an [`IntervalMap`] from a list of range-value pairs.
///
/// # Examples
///
/// ```
/// use intervalmap::interval_map;
///
/// // Empty map
/// let empty: intervalmap::IntervalMap<u32, i32> = interval_map!{};
/// assert!(empty.is_empty());
///
/// // Map with intervals
/// let map = interval_map!{
/// 0..10 => "first",
/// 20..30 => "second",
/// };
/// assert_eq!(map.get(5), Some(&"first"));
/// assert_eq!(map.get(25), Some(&"second"));
///
/// // With explicit index type
/// let map = interval_map!{ [u8] 0..10 => "a", 20..30 => "b" };
/// ```