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