Vector<bool, I> like container (random-access, I - index type, bool - value type) with all bits after size() considered off during testing Generated from class MR.VoxelBitSet. Base classes: Direct: (non-virtual) MR.BitSet This is the non-const half of the class.
More...
|
| unsafe | VoxelBitSet () |
| | Constructs an empty (default-constructed) instance.
|
| |
| unsafe | VoxelBitSet (MR._ByValue_VoxelBitSet _other) |
| | Generated from constructor MR.VoxelBitSet.VoxelBitSet.
|
| |
| | VoxelBitSet (Const_VoxelBitSet _other) |
| | Generated from constructor MR.VoxelBitSet.VoxelBitSet.
|
| |
| | VoxelBitSet (VoxelBitSet _other) |
| | Generated from constructor MR.VoxelBitSet.VoxelBitSet.
|
| |
| unsafe | VoxelBitSet (ulong numBits, bool? fillValue=null) |
| | creates bitset of given size filled with given value Generated from constructor MR.VoxelBitSet.VoxelBitSet. Parameter fillValue defaults to false.
|
| |
| unsafe | VoxelBitSet (MR.Const_BitSet src) |
| | copies all bits from another BitSet (or a descending class, e.g. TypedBitSet) Generated from constructor MR.VoxelBitSet.VoxelBitSet.
|
| |
| unsafe | VoxelBitSet (MR.Misc._Moved< MR.BitSet > src) |
| | moves all bits from another BitSet (or a descending class, e.g. TypedBitSet) Generated from constructor MR.VoxelBitSet.VoxelBitSet.
|
| |
| unsafe MR.VoxelBitSet | assign (MR._ByValue_VoxelBitSet _other) |
| | Generated from method MR.VoxelBitSet.operator=.
|
| |
| unsafe MR.VoxelBitSet | set (MR.VoxelId n, ulong len, bool val) |
| | Generated from method MR.VoxelBitSet.set.
|
| |
| unsafe MR.VoxelBitSet | set (MR.VoxelId n, bool val) |
| | Generated from method MR.VoxelBitSet.set.
|
| |
| unsafe MR.VoxelBitSet | set (MR.VoxelId n) |
| | Generated from method MR.VoxelBitSet.set.
|
| |
| unsafe MR.VoxelBitSet | set () |
| | Generated from method MR.VoxelBitSet.set.
|
| |
| unsafe MR.VoxelBitSet | reset (MR.VoxelId n, ulong len) |
| | Generated from method MR.VoxelBitSet.reset.
|
| |
| unsafe MR.VoxelBitSet | reset (MR.VoxelId n) |
| | Generated from method MR.VoxelBitSet.reset.
|
| |
| unsafe MR.VoxelBitSet | reset () |
| | Generated from method MR.VoxelBitSet.reset.
|
| |
| unsafe MR.VoxelBitSet | flip (MR.VoxelId n, ulong len) |
| | Generated from method MR.VoxelBitSet.flip.
|
| |
| unsafe MR.VoxelBitSet | flip (MR.VoxelId n) |
| | Generated from method MR.VoxelBitSet.flip.
|
| |
| unsafe MR.VoxelBitSet | flip () |
| | Generated from method MR.VoxelBitSet.flip.
|
| |
| unsafe bool | testSet (MR.VoxelId n, bool? val=null) |
| | Generated from method MR.VoxelBitSet.test_set. Parameter val defaults to true.
|
| |
| unsafe MR.VoxelBitSet | bitandAssign (MR.Const_VoxelBitSet b) |
| | Generated from method MR.VoxelBitSet.operator&=.
|
| |
| unsafe MR.VoxelBitSet | bitorAssign (MR.Const_VoxelBitSet b) |
| | Generated from method MR.VoxelBitSet.operator|=.
|
| |
| unsafe MR.VoxelBitSet | xorAssign (MR.Const_VoxelBitSet b) |
| | Generated from method MR.VoxelBitSet.operator^=.
|
| |
| unsafe MR.VoxelBitSet | subAssign (MR.Const_VoxelBitSet b) |
| | Generated from method MR.VoxelBitSet.operator-=.
|
| |
| unsafe MR.VoxelBitSet | subtract (MR.Const_VoxelBitSet b, int bShiftInBlocks) |
| | subtracts b from this, considering that bits in b are shifted right on bShiftInBlocks*bits_per_block Generated from method MR.VoxelBitSet.subtract.
|
| |
| unsafe void | autoResizeSet (MR.VoxelId pos, ulong len, bool? val=null) |
| | Generated from method MR.VoxelBitSet.autoResizeSet. Parameter val defaults to true.
|
| |
| unsafe void | autoResizeSet (MR.VoxelId pos, bool? val=null) |
| | Generated from method MR.VoxelBitSet.autoResizeSet. Parameter val defaults to true.
|
| |
| unsafe bool | autoResizeTestSet (MR.VoxelId pos, bool? val=null) |
| | Generated from method MR.VoxelBitSet.autoResizeTestSet. Parameter val defaults to true.
|
| |
| unsafe void | reserve (ulong numBits) |
| | Generated from method MR.VoxelBitSet.reserve.
|
| |
| unsafe void | resize (ulong numBits, bool? fillValue=null) |
| | Generated from method MR.VoxelBitSet.resize. Parameter fillValue defaults to false.
|
| |
| unsafe void | clear () |
| | Generated from method MR.VoxelBitSet.clear.
|
| |
| unsafe void | shrinkToFit () |
| | Generated from method MR.VoxelBitSet.shrink_to_fit.
|
| |
| unsafe bool | uncheckedTestSet (ulong n, bool? val=null) |
| | Generated from method MR.VoxelBitSet.uncheckedTestSet. Parameter val defaults to true.
|
| |
| unsafe void | reverse () |
| | changes the order of bits on the opposite Generated from method MR.VoxelBitSet.reverse.
|
| |
| unsafe void | pushBack (bool val) |
| | adds one more bit with the given value in the container, increasing its size on 1 Generated from method MR.VoxelBitSet.push_back.
|
| |
| unsafe void | popBack () |
| | removes last bit from the container, decreasing its size on 1 Generated from method MR.VoxelBitSet.pop_back.
|
| |
| unsafe void | resizeWithReserve (ulong newSize) |
| | doubles reserved memory until resize(newSize) can be done without reallocation Generated from method MR.VoxelBitSet.resizeWithReserve.
|
| |
Vector<bool, I> like container (random-access, I - index type, bool - value type) with all bits after size() considered off during testing Generated from class MR.VoxelBitSet. Base classes: Direct: (non-virtual) MR.BitSet This is the non-const half of the class.