std.vector<T>-like container that requires specific indexing type, More...
Inheritance diagram for MR.Const_VertMap:Classes | |
| struct | _Underlying |
Public Member Functions | |
| virtual void | Dispose () |
| unsafe | Const_VertMap () |
| Constructs an empty (default-constructed) instance. | |
| unsafe | Const_VertMap (MR._ByValue_VertMap _other) |
Generated from constructor MR.VertMap.VertMap. | |
| unsafe | Const_VertMap (ulong size) |
creates a vector with size elements with default value Generated from constructor MR.VertMap.VertMap. | |
| unsafe | Const_VertMap (ulong size, in MR.VertId val) |
creates a vector with size elements with the given value Generated from constructor MR.VertMap.VertMap. | |
| unsafe | Const_VertMap (MR.Misc._Moved< MR.Std.Vector_MRVertId > vec) |
moves data from the given std.vector<T> Generated from constructor MR.VertMap.VertMap. | |
| unsafe bool | empty () |
Generated from method MR.VertMap.empty. | |
| unsafe ulong | size () |
Generated from method MR.VertMap.size. | |
| unsafe ulong | capacity () |
Generated from method MR.VertMap.capacity. | |
| unsafe ref readonly MR.VertId | front () |
Generated from method MR.VertMap.front. | |
| unsafe ref readonly MR.VertId | back () |
Generated from method MR.VertMap.back. | |
| unsafe MR.VertId | beginId () |
returns the identifier of the first element Generated from method MR.VertMap.beginId. | |
| unsafe MR.VertId | backId () |
returns the identifier of the back() element Generated from method MR.VertMap.backId. | |
| unsafe MR.VertId | endId () |
returns backId() + 1 Generated from method MR.VertMap.endId. | |
| unsafe MR.? VertId | data () |
Generated from method MR.VertMap.data. | |
| unsafe ulong | heapBytes () |
returns the amount of memory this object occupies on heap Generated from method MR.VertMap.heapBytes. | |
| bool | Equals (MR.Const_VertMap? b) |
| override bool | Equals (object? other) |
Static Public Member Functions | |
| static unsafe implicit | operator Const_VertMap (MR.Misc._Moved< MR.Std.Vector_MRVertId > vec) |
moves data from the given std.vector<T> Generated from constructor MR.VertMap.VertMap. | |
| static unsafe bool | operator== (MR.Const_VertMap _this, MR.Const_VertMap b) |
Generated from method MR.VertMap.operator==. | |
| static unsafe bool | operator!= (MR.Const_VertMap _this, MR.Const_VertMap b) |
Protected Member Functions | |
| virtual unsafe void | Dispose (bool disposing) |
Properties | |
| unsafe MR.Std.Const_Vector_MRVertId | vec [get] |
| the user can directly manipulate the vector, anyway she cannot break anything | |
| unsafe ref readonly MR.VertId | this[MR.VertId i] [get] |
Generated from method MR.VertMap.operator[]. | |
Properties inherited from MR.Misc.Object< Const_VertMap > | |
| 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_VertMap > | |
| bool | _IsOwningVal |
std.vector<T>-like container that requires specific indexing type,
| T | type of stored elements |
| I | type of index (shall be convertible to size_t) Generated from class MR.VertMap. This is the const half of the class. |