We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 054e4b5 commit dbe18caCopy full SHA for dbe18ca
1 file changed
src/lib.rs
@@ -50,6 +50,9 @@ fn div_rem(x: usize, d: usize) -> (usize, usize) {
50
///
51
/// The bit set has a fixed capacity in terms of enabling bits (and the
52
/// capacity can grow using the `grow` method).
53
+///
54
+/// Derived traits depend on both the zeros and ones, so [0,1] is not equal to
55
+/// [0,1,0].
56
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
57
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
58
pub struct FixedBitSet {
0 commit comments