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.EdgeBitSet. Base classes: Direct: (non-virtual) MR.BitSet This is the const half of the class.
More...
Inheritance diagram for MR.Const_EdgeBitSet:Classes | |
| struct | _Underlying |
Public Member Functions | |
| virtual void | Dispose () |
| unsafe | Const_EdgeBitSet () |
| Constructs an empty (default-constructed) instance. | |
| unsafe | Const_EdgeBitSet (MR._ByValue_EdgeBitSet _other) |
Generated from constructor MR.EdgeBitSet.EdgeBitSet. | |
| unsafe | Const_EdgeBitSet (ulong numBits, bool? fillValue=null) |
creates bitset of given size filled with given value Generated from constructor MR.EdgeBitSet.EdgeBitSet. Parameter fillValue defaults to false. | |
| unsafe | Const_EdgeBitSet (MR.Const_BitSet src) |
copies all bits from another BitSet (or a descending class, e.g. TypedBitSet) Generated from constructor MR.EdgeBitSet.EdgeBitSet. | |
| unsafe | Const_EdgeBitSet (MR.Misc._Moved< MR.BitSet > src) |
moves all bits from another BitSet (or a descending class, e.g. TypedBitSet) Generated from constructor MR.EdgeBitSet.EdgeBitSet. | |
| unsafe bool | test (MR.EdgeId n) |
Generated from method MR.EdgeBitSet.test. | |
| unsafe MR.EdgeId | findFirst () |
Generated from method MR.EdgeBitSet.find_first. | |
| unsafe MR.EdgeId | findNext (MR.EdgeId pos) |
Generated from method MR.EdgeBitSet.find_next. | |
| unsafe MR.EdgeId | findLast () |
Generated from method MR.EdgeBitSet.find_last. | |
| unsafe MR.EdgeId | nthSetBit (ulong n) |
returns the location of nth set bit (where the first bit corresponds to n=0) or IndexType(npos) if there are less bit set Generated from method MR.EdgeBitSet.nthSetBit. | |
| unsafe bool | isSubsetOf (MR.Const_EdgeBitSet a) |
returns true if, for every bit that is set in this bitset, the corresponding bit in bitset a is also set. Otherwise this function returns false. Generated from method MR.EdgeBitSet.is_subset_of. | |
| unsafe bool | intersects (MR.Const_EdgeBitSet a) |
returns true if, there is a bit which is set in this bitset, such that the corresponding bit in bitset a is also set. Otherwise this function returns false. Generated from method MR.EdgeBitSet.intersects. | |
| unsafe MR.EdgeBitSet | getMapping (MR.Const_EdgeMap map) |
Generated from method MR.EdgeBitSet.getMapping. | |
| unsafe MR.EdgeBitSet | getMapping (MR.Const_EdgeBMap map) |
Generated from method MR.EdgeBitSet.getMapping. | |
| unsafe MR.EdgeBitSet | getMapping (MR.Phmap.Const_FlatHashMap_MREdgeId_MREdgeId map) |
Generated from method MR.EdgeBitSet.getMapping. | |
| unsafe MR.EdgeBitSet | getMapping (MR.Const_EdgeMap map, ulong resSize) |
Generated from method MR.EdgeBitSet.getMapping. | |
| unsafe MR.EdgeBitSet | getMapping (MR.Phmap.Const_FlatHashMap_MREdgeId_MREdgeId map, ulong resSize) |
Generated from method MR.EdgeBitSet.getMapping. | |
| unsafe MR.EdgeId | backId () |
returns the identifier of the back() element Generated from method MR.EdgeBitSet.backId. | |
| unsafe MR.EdgeId | endId () |
Generated from method MR.EdgeBitSet.endId. | |
| unsafe bool | empty () |
Generated from method MR.EdgeBitSet.empty. | |
| unsafe ulong | size () |
Generated from method MR.EdgeBitSet.size. | |
| unsafe ulong | numBlocks () |
Generated from method MR.EdgeBitSet.num_blocks. | |
| unsafe ulong | capacity () |
Generated from method MR.EdgeBitSet.capacity. | |
| unsafe bool | uncheckedTest (ulong n) |
Generated from method MR.EdgeBitSet.uncheckedTest. | |
| unsafe MR.Std.Const_Vector_MRUint64T | bits () |
read-only access to all bits stored as a vector of uint64 blocks Generated from method MR.EdgeBitSet.bits. | |
| unsafe bool | all () |
returns true if all bits in this container are set Generated from method MR.EdgeBitSet.all. | |
| unsafe bool | any () |
returns true if at least one bits in this container is set Generated from method MR.EdgeBitSet.any. | |
| unsafe bool | none () |
returns true if all bits in this container are reset Generated from method MR.EdgeBitSet.none. | |
| unsafe ulong | count () |
computes the number of set bits in the whole set Generated from method MR.EdgeBitSet.count. | |
| unsafe ulong | heapBytes () |
returns the amount of memory this object occupies on heap Generated from method MR.EdgeBitSet.heapBytes. | |
Static Public Member Functions | |
| static unsafe implicit | operator MR.Const_BitSet (Const_EdgeBitSet self) |
| static MR.EdgeId | beginId () |
[beginId(), endId()) is the range of all bits in the set Generated from method MR.EdgeBitSet.beginId. | |
| static unsafe MR.BitSet | fromBlocks (MR.Misc._Moved< MR.Std.Vector_MRUint64T > blocks) |
creates bitset from the given blocks of bits Generated from method MR.EdgeBitSet.fromBlocks. | |
| static unsafe MR.EdgeBitSet | operator& (MR.Const_EdgeBitSet a, MR.Const_EdgeBitSet b) |
Generated from function MR.operator&. | |
| static unsafe MR.EdgeBitSet | operator| (MR.Const_EdgeBitSet a, MR.Const_EdgeBitSet b) |
Generated from function MR.operator|. | |
| static unsafe MR.EdgeBitSet | operator^ (MR.Const_EdgeBitSet a, MR.Const_EdgeBitSet b) |
Generated from function MR.operator^. | |
| static unsafe MR.EdgeBitSet | operator- (MR.Const_EdgeBitSet a, MR.Const_EdgeBitSet b) |
Generated from function MR.operator-. | |
Protected Member Functions | |
| virtual unsafe void | Dispose (bool disposing) |
Properties | |
| static unsafe ulong | BitsPerBlock [get] |
| static unsafe ulong | Npos [get] |
Properties inherited from MR.Misc.Object< Const_EdgeBitSet > | |
| virtual bool | _IsOwning [get] |
| Returns true if this is an owning instance, and when disposed, will destroy the underlying C++ instance. If false, we assume that the underlying C++ instance will live long enough. | |
Additional Inherited Members | |
Protected Attributes inherited from MR.Misc.Object< Const_EdgeBitSet > | |
| bool | _IsOwningVal |
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.EdgeBitSet. Base classes: Direct: (non-virtual) MR.BitSet This is the const half of the class.