MeshLib C# Docs
Loading...
Searching...
No Matches
MR.Vector_MRGraphEdgeId_MRGraphEdgeId Class Reference

std.vector<T>-like container that requires specific indexing type, More...

+ Inheritance diagram for MR.Vector_MRGraphEdgeId_MRGraphEdgeId:

Public Member Functions

unsafe Vector_MRGraphEdgeId_MRGraphEdgeId ()
 Constructs an empty (default-constructed) instance.
 
unsafe Vector_MRGraphEdgeId_MRGraphEdgeId (MR._ByValue_Vector_MRGraphEdgeId_MRGraphEdgeId _other)
 Generated from constructor MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::Vector.
 
 Vector_MRGraphEdgeId_MRGraphEdgeId (Const_Vector_MRGraphEdgeId_MRGraphEdgeId _other)
 Generated from constructor MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::Vector.
 
 Vector_MRGraphEdgeId_MRGraphEdgeId (Vector_MRGraphEdgeId_MRGraphEdgeId _other)
 Generated from constructor MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::Vector.
 
unsafe Vector_MRGraphEdgeId_MRGraphEdgeId (ulong size)
 creates a vector with size elements with default value Generated from constructor MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::Vector.
 
unsafe Vector_MRGraphEdgeId_MRGraphEdgeId (ulong size, in MR.GraphEdgeId val)
 creates a vector with size elements with the given value Generated from constructor MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::Vector.
 
unsafe Vector_MRGraphEdgeId_MRGraphEdgeId (MR.Misc._Moved< MR.Std.Vector_MRGraphEdgeId > vec)
 moves data from the given std.vector<T> Generated from constructor MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::Vector.
 
unsafe MR.Vector_MRGraphEdgeId_MRGraphEdgeId assign (MR._ByValue_Vector_MRGraphEdgeId_MRGraphEdgeId _other)
 Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::operator=.
 
unsafe void clear ()
 Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::clear.
 
unsafe void resize (ulong newSize)
 Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::resize.
 
unsafe void resize (ulong newSize, in MR.GraphEdgeId t)
 Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::resize.
 
unsafe void resizeNoInit (ulong targetSize)
 Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::resizeNoInit.
 
unsafe void reserve (ulong capacity)
 Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::reserve.
 
unsafe void resizeWithReserve (ulong newSize)
 doubles reserved memory until resize(newSize) can be done without reallocation Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::resizeWithReserve.
 
unsafe void resizeWithReserve (ulong newSize, in MR.GraphEdgeId value)
 doubles reserved memory until resize(newSize, value) can be done without reallocation Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::resizeWithReserve.
 
unsafe void autoResizeSet (MR.GraphEdgeId pos, ulong len, MR.GraphEdgeId val)
 sets elements [pos, pos+len) to the given value, adjusting the size of the vector to include new elements; the elements in between old size and pos are also set to val (for faster implementation) Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::autoResizeSet.
 
unsafe void autoResizeSet (MR.GraphEdgeId i, MR.GraphEdgeId val)
 sets the element #i to the given value, adjusting the size of the vector to include new element Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::autoResizeSet.
 
unsafe ref MR.GraphEdgeId autoResizeAt (MR.GraphEdgeId i)
 this accessor automatically adjusts the size of the vector Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::autoResizeAt.
 
unsafe void pushBack (in MR.GraphEdgeId t)
 Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::push_back.
 
unsafe void pushBack (MR.Misc._MoveRef _move_t, in MR.GraphEdgeId t)
 Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::push_back.
 
unsafe void popBack ()
 Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::pop_back.
 
unsafe ref MR.GraphEdgeId emplaceBack ()
 Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::emplace_back<>.
 
unsafe new ref MR.GraphEdgeId front ()
 Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::front.
 
unsafe new ref MR.GraphEdgeId back ()
 Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::back.
 
unsafe new MR.Misc.? Ref< MR.GraphEdgeIddata ()
 Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::data.
 
unsafe void swap (MR.Vector_MRGraphEdgeId_MRGraphEdgeId b)
 Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::swap.
 

Static Public Member Functions

static unsafe implicit operator Vector_MRGraphEdgeId_MRGraphEdgeId (MR.Misc._Moved< MR.Std.Vector_MRGraphEdgeId > vec)
 moves data from the given std.vector<T> Generated from constructor MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::Vector.
 

Properties

new unsafe MR.Std.Vector_MRGraphEdgeId vec [get, protected set]
 the user can directly manipulate the vector, anyway she cannot break anything
 
unsafe new ref MR.GraphEdgeId this[MR.GraphEdgeId i] [get]
 Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::operator[].
 

Detailed Description

std.vector<T>-like container that requires specific indexing type,

Template Parameters
Ttype of stored elements
Itype of index (shall be convertible to size_t) Generated from class MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>. This is the non-const half of the class.

Constructor & Destructor Documentation

◆ Vector_MRGraphEdgeId_MRGraphEdgeId() [1/7]

unsafe MR.Vector_MRGraphEdgeId_MRGraphEdgeId.Vector_MRGraphEdgeId_MRGraphEdgeId ( )
inline

Constructs an empty (default-constructed) instance.

◆ Vector_MRGraphEdgeId_MRGraphEdgeId() [2/7]

unsafe MR.Vector_MRGraphEdgeId_MRGraphEdgeId.Vector_MRGraphEdgeId_MRGraphEdgeId ( MR._ByValue_Vector_MRGraphEdgeId_MRGraphEdgeId _other)
inline

Generated from constructor MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::Vector.

◆ Vector_MRGraphEdgeId_MRGraphEdgeId() [3/7]

MR.Vector_MRGraphEdgeId_MRGraphEdgeId.Vector_MRGraphEdgeId_MRGraphEdgeId ( Const_Vector_MRGraphEdgeId_MRGraphEdgeId _other)
inline

Generated from constructor MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::Vector.

◆ Vector_MRGraphEdgeId_MRGraphEdgeId() [4/7]

MR.Vector_MRGraphEdgeId_MRGraphEdgeId.Vector_MRGraphEdgeId_MRGraphEdgeId ( Vector_MRGraphEdgeId_MRGraphEdgeId _other)
inline

Generated from constructor MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::Vector.

◆ Vector_MRGraphEdgeId_MRGraphEdgeId() [5/7]

unsafe MR.Vector_MRGraphEdgeId_MRGraphEdgeId.Vector_MRGraphEdgeId_MRGraphEdgeId ( ulong size)
inline

creates a vector with size elements with default value Generated from constructor MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::Vector.

◆ Vector_MRGraphEdgeId_MRGraphEdgeId() [6/7]

unsafe MR.Vector_MRGraphEdgeId_MRGraphEdgeId.Vector_MRGraphEdgeId_MRGraphEdgeId ( ulong size,
in MR.GraphEdgeId val )
inline

creates a vector with size elements with the given value Generated from constructor MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::Vector.

◆ Vector_MRGraphEdgeId_MRGraphEdgeId() [7/7]

unsafe MR.Vector_MRGraphEdgeId_MRGraphEdgeId.Vector_MRGraphEdgeId_MRGraphEdgeId ( MR.Misc._Moved< MR.Std.Vector_MRGraphEdgeId > vec)
inline

moves data from the given std.vector<T> Generated from constructor MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::Vector.

Member Function Documentation

◆ assign()

unsafe MR.Vector_MRGraphEdgeId_MRGraphEdgeId MR.Vector_MRGraphEdgeId_MRGraphEdgeId.assign ( MR._ByValue_Vector_MRGraphEdgeId_MRGraphEdgeId _other)
inline

Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::operator=.

◆ autoResizeAt()

unsafe ref MR.GraphEdgeId MR.Vector_MRGraphEdgeId_MRGraphEdgeId.autoResizeAt ( MR.GraphEdgeId i)
inline

this accessor automatically adjusts the size of the vector Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::autoResizeAt.

◆ autoResizeSet() [1/2]

unsafe void MR.Vector_MRGraphEdgeId_MRGraphEdgeId.autoResizeSet ( MR.GraphEdgeId i,
MR.GraphEdgeId val )
inline

sets the element #i to the given value, adjusting the size of the vector to include new element Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::autoResizeSet.

◆ autoResizeSet() [2/2]

unsafe void MR.Vector_MRGraphEdgeId_MRGraphEdgeId.autoResizeSet ( MR.GraphEdgeId pos,
ulong len,
MR.GraphEdgeId val )
inline

sets elements [pos, pos+len) to the given value, adjusting the size of the vector to include new elements; the elements in between old size and pos are also set to val (for faster implementation) Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::autoResizeSet.

◆ back()

unsafe new ref MR.GraphEdgeId MR.Vector_MRGraphEdgeId_MRGraphEdgeId.back ( )
inline

Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::back.

◆ clear()

unsafe void MR.Vector_MRGraphEdgeId_MRGraphEdgeId.clear ( )
inline

Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::clear.

◆ data()

unsafe new MR.Misc.? Ref< MR.GraphEdgeId > MR.Vector_MRGraphEdgeId_MRGraphEdgeId.data ( )
inline

Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::data.

◆ emplaceBack()

unsafe ref MR.GraphEdgeId MR.Vector_MRGraphEdgeId_MRGraphEdgeId.emplaceBack ( )
inline

Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::emplace_back<>.

◆ front()

unsafe new ref MR.GraphEdgeId MR.Vector_MRGraphEdgeId_MRGraphEdgeId.front ( )
inline

Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::front.

◆ operator Vector_MRGraphEdgeId_MRGraphEdgeId()

static unsafe implicit MR.Vector_MRGraphEdgeId_MRGraphEdgeId.operator Vector_MRGraphEdgeId_MRGraphEdgeId ( MR.Misc._Moved< MR.Std.Vector_MRGraphEdgeId > vec)
inlinestatic

moves data from the given std.vector<T> Generated from constructor MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::Vector.

◆ popBack()

unsafe void MR.Vector_MRGraphEdgeId_MRGraphEdgeId.popBack ( )
inline

Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::pop_back.

◆ pushBack() [1/2]

unsafe void MR.Vector_MRGraphEdgeId_MRGraphEdgeId.pushBack ( in MR.GraphEdgeId t)
inline

Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::push_back.

◆ pushBack() [2/2]

unsafe void MR.Vector_MRGraphEdgeId_MRGraphEdgeId.pushBack ( MR.Misc._MoveRef _move_t,
in MR.GraphEdgeId t )
inline

Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::push_back.

◆ reserve()

unsafe void MR.Vector_MRGraphEdgeId_MRGraphEdgeId.reserve ( ulong capacity)
inline

Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::reserve.

◆ resize() [1/2]

unsafe void MR.Vector_MRGraphEdgeId_MRGraphEdgeId.resize ( ulong newSize)
inline

Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::resize.

◆ resize() [2/2]

unsafe void MR.Vector_MRGraphEdgeId_MRGraphEdgeId.resize ( ulong newSize,
in MR.GraphEdgeId t )
inline

Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::resize.

◆ resizeNoInit()

unsafe void MR.Vector_MRGraphEdgeId_MRGraphEdgeId.resizeNoInit ( ulong targetSize)
inline

Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::resizeNoInit.

◆ resizeWithReserve() [1/2]

unsafe void MR.Vector_MRGraphEdgeId_MRGraphEdgeId.resizeWithReserve ( ulong newSize)
inline

doubles reserved memory until resize(newSize) can be done without reallocation Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::resizeWithReserve.

◆ resizeWithReserve() [2/2]

unsafe void MR.Vector_MRGraphEdgeId_MRGraphEdgeId.resizeWithReserve ( ulong newSize,
in MR.GraphEdgeId value )
inline

doubles reserved memory until resize(newSize, value) can be done without reallocation Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::resizeWithReserve.

◆ swap()

unsafe void MR.Vector_MRGraphEdgeId_MRGraphEdgeId.swap ( MR.Vector_MRGraphEdgeId_MRGraphEdgeId b)
inline

Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::swap.

Property Documentation

◆ this[MR.GraphEdgeId i]

unsafe new ref MR.GraphEdgeId MR.Vector_MRGraphEdgeId_MRGraphEdgeId.this[MR.GraphEdgeId i]
get

Generated from method MR.Vector<MR.GraphEdgeId, MR.GraphEdgeId>::operator[].

◆ vec

new unsafe MR.Std.Vector_MRGraphEdgeId MR.Vector_MRGraphEdgeId_MRGraphEdgeId.vec
getprotected set

the user can directly manipulate the vector, anyway she cannot break anything


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