added very important clarification on non-overlapping map+set

This commit is contained in:
ripytide
2022-12-10 01:14:22 +00:00
parent d5ecf2ae4c
commit 33e4cfac0b
3 changed files with 3 additions and 5 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ use serde::{Deserialize, Serialize};
use crate::bound_ord::BoundOrd;
use crate::TryFromBounds;
/// An ordered map of [`RangeBounds`] based on [`BTreeMap`].
/// An ordered map of non-overlapping [`RangeBounds`] based on [`BTreeMap`].
///
/// `I` is the generic type parameter for the [`Ord`] type the `K` type
/// is [`RangeBounds`] over.
+1 -1
View File
@@ -28,7 +28,7 @@ use crate::{
TryFromBoundsError,
};
/// An ordered set of [`RangeBounds`] based on [`RangeBoundsMap`].
/// An ordered set of non-overlapping [`RangeBounds`] based on [`RangeBoundsMap`].
///
/// `I` is the generic type parameter for the [`Ord`] type the `K`
/// type is [`RangeBounds`] over.
+1 -3
View File
@@ -1,10 +1,8 @@
# refactor
- try and fix all the uses of cloned() in the library
- replace MultiBounds::\* with mee() and mii()
- try to fix all the uses of cloned() in the library
- make a StartBoundWrapper that uses StartBound to implement ord and
use that instead of storing the startbound twice
- do a /map on set.rs after finishing it
- text flow all comments
# features