Skip to content

Commit c509325

Browse files
committed
Describe BitPositions and TwoBitPositions.
1 parent 8c3251f commit c509325

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/libcollections/bitv.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1450,11 +1450,13 @@ impl MutableSet<uint> for BitvSet {
14501450
}
14511451
}
14521452

1453+
/// An iterator for `BitvSet`.
14531454
pub struct BitPositions<'a> {
14541455
set: &'a BitvSet,
14551456
next_idx: uint
14561457
}
14571458

1459+
/// An iterator combining wo `BitvSet` iterators.
14581460
pub struct TwoBitPositions<'a> {
14591461
set: &'a BitvSet,
14601462
other: &'a BitvSet,

0 commit comments

Comments
 (0)