File tree 1 file changed +7
-1
lines changed
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,13 @@ macro_rules! bit_relations_inherent_impls {
97
97
98
98
/// A fixed-size bitset type with a dense representation.
99
99
///
100
- /// NOTE: Use [`GrowableBitSet`] if you need support for resizing after creation.
100
+ /// Note 1: Since this bitset is dense, if your domain is big, and/or relatively
101
+ /// homogeneous (for example, with long runs of bits set or unset), then it may
102
+ /// be preferable to instead use a [MixedBitSet], or an
103
+ /// [IntervalSet](crate::interval::IntervalSet). They should be more suited to
104
+ /// sparse, or highly-compressible, domains.
105
+ ///
106
+ /// Note 2: Use [`GrowableBitSet`] if you need support for resizing after creation.
101
107
///
102
108
/// `T` is an index type, typically a newtyped `usize` wrapper, but it can also
103
109
/// just be `usize`.
You can’t perform that action at this time.
0 commit comments