MeshLib C# Docs
Loading...
Searching...
No Matches

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.FaceBitSet. Base classes: Direct: (non-virtual) MR.BitSet This is the const half of the class. More...

Inheritance diagram for MR.Const_FaceBitSet:

Classes

class  _Enumerator
struct  _Underlying

Public Member Functions

virtual void Dispose ()
IEnumerator< MR.FaceIdGetEnumerator ()
unsafe Const_FaceBitSet ()
 Constructs an empty (default-constructed) instance.
unsafe Const_FaceBitSet (MR._ByValue_FaceBitSet _other)
 Generated from constructor MR.FaceBitSet.FaceBitSet.
 Const_FaceBitSet (Const_FaceBitSet _other)
 Generated from constructor MR.FaceBitSet.FaceBitSet.
 Const_FaceBitSet (FaceBitSet _other)
 Generated from constructor MR.FaceBitSet.FaceBitSet.
unsafe Const_FaceBitSet (ulong numBits, bool? fillValue=null)
 creates bitset of given size filled with given value Generated from constructor MR.FaceBitSet.FaceBitSet. Parameter fillValue defaults to false.
unsafe Const_FaceBitSet (MR.Const_BitSet src)
 copies all bits from another BitSet (or a descending class, e.g. TypedBitSet<U>) Generated from constructor MR.FaceBitSet.FaceBitSet.
unsafe Const_FaceBitSet (MR.Misc._Moved< MR.BitSet > src)
 moves all bits from another BitSet (or a descending class, e.g. TypedBitSet<U>) Generated from constructor MR.FaceBitSet.FaceBitSet.
unsafe bool test (MR.FaceId n)
 Generated from method MR.FaceBitSet.test.
unsafe MR.FaceId findFirst ()
 Generated from method MR::FaceBitSet::find_first.
unsafe MR.FaceId findNext (MR.FaceId pos)
 Generated from method MR::FaceBitSet::find_next.
unsafe MR.FaceId findLast ()
 Generated from method MR::FaceBitSet::find_last.
unsafe MR.FaceId findFirstNotSet ()
 Generated from method MR::FaceBitSet::find_first_not_set.
unsafe MR.FaceId findNextNotSet (MR.FaceId pos)
 Generated from method MR::FaceBitSet::find_next_not_set.
unsafe MR.FaceId findLastNotSet ()
 Generated from method MR::FaceBitSet::find_last_not_set.
unsafe MR.FaceId 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.FaceBitSet.nthSetBit.
unsafe bool isSubsetOf (MR.Const_FaceBitSet 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::FaceBitSet::is_subset_of.
unsafe bool intersects (MR.Const_FaceBitSet 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.FaceBitSet.intersects.
unsafe MR.FaceBitSet getMapping (MR.Const_FaceMap map)
 Generated from method MR.FaceBitSet.getMapping.
unsafe MR.FaceBitSet getMapping (MR.Const_FaceBMap map)
 Generated from method MR.FaceBitSet.getMapping.
unsafe MR.FaceBitSet getMapping (MR.Phmap.Const_FlatHashMap_MRFaceId_MRFaceId map)
 Generated from method MR.FaceBitSet.getMapping.
unsafe MR.FaceBitSet getMapping (MR.Const_FaceMap map, ulong resSize)
 Generated from method MR.FaceBitSet.getMapping.
unsafe MR.FaceBitSet getMapping (MR.Phmap.Const_FlatHashMap_MRFaceId_MRFaceId map, ulong resSize)
 Generated from method MR.FaceBitSet.getMapping.
unsafe MR.FaceId backId ()
 returns the identifier of the back() element Generated from method MR.FaceBitSet.backId.
unsafe MR.FaceId endId ()
 Generated from method MR.FaceBitSet.endId.
unsafe bool empty ()
 Generated from method MR.FaceBitSet.empty.
unsafe ulong size ()
 Generated from method MR.FaceBitSet.size.
unsafe ulong numBlocks ()
 Generated from method MR::FaceBitSet::num_blocks.
unsafe ulong capacity ()
 Generated from method MR.FaceBitSet.capacity.
unsafe bool uncheckedTest (ulong n)
 Generated from method MR.FaceBitSet.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.FaceBitSet.bits.
unsafe bool all ()
 returns true if all bits in this container are set Generated from method MR.FaceBitSet.all.
unsafe bool any ()
 returns true if at least one bits in this container is set Generated from method MR.FaceBitSet.any.
unsafe bool none ()
 returns true if all bits in this container are reset Generated from method MR.FaceBitSet.none.
unsafe ulong count ()
 computes the number of set bits in the whole set Generated from method MR.FaceBitSet.count.
unsafe ulong heapBytes ()
 returns the amount of memory this object occupies on heap Generated from method MR.FaceBitSet.heapBytes.
bool Equals (MR.Const_FaceBitSet? b)
override bool Equals (object? other)

Static Public Member Functions

static unsafe implicit operator MR.Const_BitSet (Const_FaceBitSet self)
static MR.FaceId beginId ()
 [beginId(), endId()) is the range of all bits in the set Generated from method MR.FaceBitSet.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.FaceBitSet.fromBlocks.
static unsafe MR.FaceBitSet operator& (MR.Const_FaceBitSet a, MR.Const_FaceBitSet b)
 Generated from function MR::operator&amp;.
static unsafe MR.FaceBitSet operator| (MR.Const_FaceBitSet a, MR.Const_FaceBitSet b)
 Generated from function MR::operator|.
static unsafe MR.FaceBitSet operator^ (MR.Const_FaceBitSet a, MR.Const_FaceBitSet b)
 Generated from function MR::operator^.
static unsafe MR.FaceBitSet operator- (MR.Const_FaceBitSet a, MR.Const_FaceBitSet b)
 Generated from function MR::operator-.
static unsafe bool operator== (MR.Const_FaceBitSet a, MR.Const_FaceBitSet b)
 Generated from function MR::operator==&lt;MR.FaceId&gt;.
static unsafe bool operator!= (MR.Const_FaceBitSet a, MR.Const_FaceBitSet b)

Protected Member Functions

virtual unsafe void Dispose (bool disposing)

Static Protected Attributes

static unsafe ulong * __ref_storage_BitsPerBlock
static unsafe ulong * __ref_storage_Npos

Properties

static unsafe ulong BitsPerBlock [get]
static unsafe ulong Npos [get]

Detailed Description

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.FaceBitSet. Base classes: Direct: (non-virtual) MR.BitSet This is the const half of the class.

Constructor & Destructor Documentation

◆ Const_FaceBitSet() [1/7]

unsafe MR.Const_FaceBitSet.Const_FaceBitSet ( )
inline

Constructs an empty (default-constructed) instance.

◆ Const_FaceBitSet() [2/7]

unsafe MR.Const_FaceBitSet.Const_FaceBitSet ( MR._ByValue_FaceBitSet _other)
inline

Generated from constructor MR.FaceBitSet.FaceBitSet.

◆ Const_FaceBitSet() [3/7]

MR.Const_FaceBitSet.Const_FaceBitSet ( Const_FaceBitSet _other)
inline

Generated from constructor MR.FaceBitSet.FaceBitSet.

◆ Const_FaceBitSet() [4/7]

MR.Const_FaceBitSet.Const_FaceBitSet ( FaceBitSet _other)
inline

Generated from constructor MR.FaceBitSet.FaceBitSet.

◆ Const_FaceBitSet() [5/7]

unsafe MR.Const_FaceBitSet.Const_FaceBitSet ( ulong numBits,
bool? fillValue = null )
inline

creates bitset of given size filled with given value Generated from constructor MR.FaceBitSet.FaceBitSet. Parameter fillValue defaults to false.

◆ Const_FaceBitSet() [6/7]

unsafe MR.Const_FaceBitSet.Const_FaceBitSet ( MR.Const_BitSet src)
inline

copies all bits from another BitSet (or a descending class, e.g. TypedBitSet<U>) Generated from constructor MR.FaceBitSet.FaceBitSet.

◆ Const_FaceBitSet() [7/7]

unsafe MR.Const_FaceBitSet.Const_FaceBitSet ( MR.Misc._Moved< MR.BitSet > src)
inline

moves all bits from another BitSet (or a descending class, e.g. TypedBitSet<U>) Generated from constructor MR.FaceBitSet.FaceBitSet.

Member Function Documentation

◆ all()

unsafe bool MR.Const_FaceBitSet.all ( )
inline

returns true if all bits in this container are set Generated from method MR.FaceBitSet.all.

◆ any()

unsafe bool MR.Const_FaceBitSet.any ( )
inline

returns true if at least one bits in this container is set Generated from method MR.FaceBitSet.any.

◆ backId()

unsafe MR.FaceId MR.Const_FaceBitSet.backId ( )
inline

returns the identifier of the back() element Generated from method MR.FaceBitSet.backId.

◆ beginId()

MR.FaceId MR.Const_FaceBitSet.beginId ( )
inlinestatic

[beginId(), endId()) is the range of all bits in the set Generated from method MR.FaceBitSet.beginId.

◆ bits()

unsafe MR.Std.Const_Vector_MRUint64T MR.Const_FaceBitSet.bits ( )
inline

read-only access to all bits stored as a vector of uint64 blocks Generated from method MR.FaceBitSet.bits.

◆ capacity()

unsafe ulong MR.Const_FaceBitSet.capacity ( )
inline

Generated from method MR.FaceBitSet.capacity.

◆ count()

unsafe ulong MR.Const_FaceBitSet.count ( )
inline

computes the number of set bits in the whole set Generated from method MR.FaceBitSet.count.

◆ Dispose() [1/2]

virtual void MR.Const_FaceBitSet.Dispose ( )
inlinevirtual

◆ Dispose() [2/2]

virtual unsafe void MR.Const_FaceBitSet.Dispose ( bool disposing)
inlineprotectedvirtual

◆ empty()

unsafe bool MR.Const_FaceBitSet.empty ( )
inline

Generated from method MR.FaceBitSet.empty.

◆ endId()

unsafe MR.FaceId MR.Const_FaceBitSet.endId ( )
inline

Generated from method MR.FaceBitSet.endId.

◆ Equals() [1/2]

bool MR.Const_FaceBitSet.Equals ( MR.Const_FaceBitSet? b)
inline

◆ Equals() [2/2]

override bool MR.Const_FaceBitSet.Equals ( object? other)
inline

◆ findFirst()

unsafe MR.FaceId MR.Const_FaceBitSet.findFirst ( )
inline

Generated from method MR::FaceBitSet::find_first.

◆ findFirstNotSet()

unsafe MR.FaceId MR.Const_FaceBitSet.findFirstNotSet ( )
inline

Generated from method MR::FaceBitSet::find_first_not_set.

◆ findLast()

unsafe MR.FaceId MR.Const_FaceBitSet.findLast ( )
inline

Generated from method MR::FaceBitSet::find_last.

◆ findLastNotSet()

unsafe MR.FaceId MR.Const_FaceBitSet.findLastNotSet ( )
inline

Generated from method MR::FaceBitSet::find_last_not_set.

◆ findNext()

unsafe MR.FaceId MR.Const_FaceBitSet.findNext ( MR.FaceId pos)
inline

Generated from method MR::FaceBitSet::find_next.

◆ findNextNotSet()

unsafe MR.FaceId MR.Const_FaceBitSet.findNextNotSet ( MR.FaceId pos)
inline

Generated from method MR::FaceBitSet::find_next_not_set.

◆ fromBlocks()

unsafe MR.BitSet MR.Const_FaceBitSet.fromBlocks ( MR.Misc._Moved< MR.Std.Vector_MRUint64T > blocks)
inlinestatic

creates bitset from the given blocks of bits Generated from method MR.FaceBitSet.fromBlocks.

◆ GetEnumerator()

IEnumerator< MR.FaceId > MR.Const_FaceBitSet.GetEnumerator ( )
inline

◆ getMapping() [1/5]

unsafe MR.FaceBitSet MR.Const_FaceBitSet.getMapping ( MR.Const_FaceBMap map)
inline

Generated from method MR.FaceBitSet.getMapping.

◆ getMapping() [2/5]

unsafe MR.FaceBitSet MR.Const_FaceBitSet.getMapping ( MR.Const_FaceMap map)
inline

Generated from method MR.FaceBitSet.getMapping.

◆ getMapping() [3/5]

unsafe MR.FaceBitSet MR.Const_FaceBitSet.getMapping ( MR.Const_FaceMap map,
ulong resSize )
inline

Generated from method MR.FaceBitSet.getMapping.

◆ getMapping() [4/5]

unsafe MR.FaceBitSet MR.Const_FaceBitSet.getMapping ( MR.Phmap.Const_FlatHashMap_MRFaceId_MRFaceId map)
inline

Generated from method MR.FaceBitSet.getMapping.

◆ getMapping() [5/5]

unsafe MR.FaceBitSet MR.Const_FaceBitSet.getMapping ( MR.Phmap.Const_FlatHashMap_MRFaceId_MRFaceId map,
ulong resSize )
inline

Generated from method MR.FaceBitSet.getMapping.

◆ heapBytes()

unsafe ulong MR.Const_FaceBitSet.heapBytes ( )
inline

returns the amount of memory this object occupies on heap Generated from method MR.FaceBitSet.heapBytes.

◆ intersects()

unsafe bool MR.Const_FaceBitSet.intersects ( MR.Const_FaceBitSet a)
inline

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.FaceBitSet.intersects.

◆ isSubsetOf()

unsafe bool MR.Const_FaceBitSet.isSubsetOf ( MR.Const_FaceBitSet a)
inline

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::FaceBitSet::is_subset_of.

◆ none()

unsafe bool MR.Const_FaceBitSet.none ( )
inline

returns true if all bits in this container are reset Generated from method MR.FaceBitSet.none.

◆ nthSetBit()

unsafe MR.FaceId MR.Const_FaceBitSet.nthSetBit ( ulong n)
inline

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.FaceBitSet.nthSetBit.

◆ numBlocks()

unsafe ulong MR.Const_FaceBitSet.numBlocks ( )
inline

Generated from method MR::FaceBitSet::num_blocks.

◆ operator MR.Const_BitSet()

unsafe implicit MR.Const_FaceBitSet.operator MR.Const_BitSet ( Const_FaceBitSet self)
inlinestatic

◆ operator!=()

unsafe bool MR.Const_FaceBitSet.operator!= ( MR.Const_FaceBitSet a,
MR.Const_FaceBitSet b )
inlinestatic

◆ operator&()

unsafe MR.FaceBitSet MR.Const_FaceBitSet.operator& ( MR.Const_FaceBitSet a,
MR.Const_FaceBitSet b )
inlinestatic

Generated from function MR::operator&amp;.

◆ operator-()

unsafe MR.FaceBitSet MR.Const_FaceBitSet.operator- ( MR.Const_FaceBitSet a,
MR.Const_FaceBitSet b )
inlinestatic

Generated from function MR::operator-.

◆ operator==()

unsafe bool MR.Const_FaceBitSet.operator== ( MR.Const_FaceBitSet a,
MR.Const_FaceBitSet b )
inlinestatic

Generated from function MR::operator==&lt;MR.FaceId&gt;.

◆ operator^()

unsafe MR.FaceBitSet MR.Const_FaceBitSet.operator^ ( MR.Const_FaceBitSet a,
MR.Const_FaceBitSet b )
inlinestatic

Generated from function MR::operator^.

◆ operator|()

unsafe MR.FaceBitSet MR.Const_FaceBitSet.operator| ( MR.Const_FaceBitSet a,
MR.Const_FaceBitSet b )
inlinestatic

Generated from function MR::operator|.

◆ size()

unsafe ulong MR.Const_FaceBitSet.size ( )
inline

Generated from method MR.FaceBitSet.size.

◆ test()

unsafe bool MR.Const_FaceBitSet.test ( MR.FaceId n)
inline

Generated from method MR.FaceBitSet.test.

◆ uncheckedTest()

unsafe bool MR.Const_FaceBitSet.uncheckedTest ( ulong n)
inline

Generated from method MR.FaceBitSet.uncheckedTest.

Member Data Documentation

◆ __ref_storage_BitsPerBlock

unsafe ulong* MR.Const_FaceBitSet.__ref_storage_BitsPerBlock
staticprotected

◆ __ref_storage_Npos

unsafe ulong* MR.Const_FaceBitSet.__ref_storage_Npos
staticprotected

Property Documentation

◆ BitsPerBlock

unsafe ulong MR.Const_FaceBitSet.BitsPerBlock
staticget

◆ Npos

unsafe ulong MR.Const_FaceBitSet.Npos
staticget

The documentation for this class was generated from the following file: