mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-21 22:34:05 +00:00
IntervalSet: add comment about representation
This commit is contained in:
parent
a2410425b3
commit
11bd99de8c
@ -17,7 +17,7 @@ mod tests;
|
||||
/// first value of the following element.
|
||||
#[derive(Debug, Clone)]
|
||||
pub struct IntervalSet<I> {
|
||||
// Start, end
|
||||
// Start, end (both inclusive)
|
||||
map: SmallVec<[(u32, u32); 2]>,
|
||||
domain: usize,
|
||||
_data: PhantomData<I>,
|
||||
|
Loading…
Reference in New Issue
Block a user