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