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

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

+ Inheritance diagram for MR.Vector_MRMeshTexture_MRTextureId:

Classes

class  _Enumerator
 

Public Member Functions

new IEnumerator< MR.MeshTextureGetEnumerator ()
 
unsafe Vector_MRMeshTexture_MRTextureId ()
 Constructs an empty (default-constructed) instance.
 
unsafe Vector_MRMeshTexture_MRTextureId (MR._ByValue_Vector_MRMeshTexture_MRTextureId _other)
 Generated from constructor MR.Vector<MR.MeshTexture, MR.TextureId>::Vector.
 
 Vector_MRMeshTexture_MRTextureId (Const_Vector_MRMeshTexture_MRTextureId _other)
 Generated from constructor MR.Vector<MR.MeshTexture, MR.TextureId>::Vector.
 
 Vector_MRMeshTexture_MRTextureId (Vector_MRMeshTexture_MRTextureId _other)
 Generated from constructor MR.Vector<MR.MeshTexture, MR.TextureId>::Vector.
 
unsafe Vector_MRMeshTexture_MRTextureId (ulong size)
 creates a vector with size elements with default value Generated from constructor MR.Vector<MR.MeshTexture, MR.TextureId>::Vector.
 
unsafe Vector_MRMeshTexture_MRTextureId (ulong size, MR.Const_MeshTexture val)
 creates a vector with size elements with the given value Generated from constructor MR.Vector<MR.MeshTexture, MR.TextureId>::Vector.
 
unsafe Vector_MRMeshTexture_MRTextureId (MR.Misc._Moved< MR.Std.Vector_MRMeshTexture > vec)
 moves data from the given std.vector<T> Generated from constructor MR.Vector<MR.MeshTexture, MR.TextureId>::Vector.
 
unsafe MR.Vector_MRMeshTexture_MRTextureId assign (MR._ByValue_Vector_MRMeshTexture_MRTextureId _other)
 Generated from method MR.Vector<MR.MeshTexture, MR.TextureId>::operator=.
 
unsafe void clear ()
 Generated from method MR.Vector<MR.MeshTexture, MR.TextureId>::clear.
 
unsafe void resize (ulong newSize)
 Generated from method MR.Vector<MR.MeshTexture, MR.TextureId>::resize.
 
unsafe void resize (ulong newSize, MR.Const_MeshTexture t)
 Generated from method MR.Vector<MR.MeshTexture, MR.TextureId>::resize.
 
unsafe void reserve (ulong capacity)
 Generated from method MR.Vector<MR.MeshTexture, MR.TextureId>::reserve.
 
unsafe void resizeWithReserve (ulong newSize)
 doubles reserved memory until resize(newSize) can be done without reallocation Generated from method MR.Vector<MR.MeshTexture, MR.TextureId>::resizeWithReserve.
 
unsafe void resizeWithReserve (ulong newSize, MR.Const_MeshTexture value)
 doubles reserved memory until resize(newSize, value) can be done without reallocation Generated from method MR.Vector<MR.MeshTexture, MR.TextureId>::resizeWithReserve.
 
unsafe void autoResizeSet (MR.TextureId pos, ulong len, MR._ByValue_MeshTexture 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.MeshTexture, MR.TextureId>::autoResizeSet.
 
unsafe void autoResizeSet (MR.TextureId i, MR._ByValue_MeshTexture 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.MeshTexture, MR.TextureId>::autoResizeSet.
 
unsafe MR.MeshTexture autoResizeAt (MR.TextureId i)
 this accessor automatically adjusts the size of the vector Generated from method MR.Vector<MR.MeshTexture, MR.TextureId>::autoResizeAt.
 
unsafe void pushBack (MR.Const_MeshTexture t)
 Generated from method MR.Vector<MR.MeshTexture, MR.TextureId>::push_back.
 
unsafe void pushBack (MR.Misc._Moved< MR.MeshTexture > t)
 Generated from method MR.Vector<MR.MeshTexture, MR.TextureId>::push_back.
 
unsafe void popBack ()
 Generated from method MR.Vector<MR.MeshTexture, MR.TextureId>::pop_back.
 
unsafe MR.MeshTexture emplaceBack (MR.Misc._Moved< MR.MeshTexture > args)
 Generated from method MR.Vector<MR.MeshTexture, MR.TextureId>::emplace_back<MR.MeshTexture>.
 
unsafe MR.MeshTexture emplaceBack ()
 Generated from method MR.Vector<MR.MeshTexture, MR.TextureId>::emplace_back<>.
 
unsafe new MR.MeshTexture front ()
 Generated from method MR.Vector<MR.MeshTexture, MR.TextureId>::front.
 
unsafe new MR.MeshTexture back ()
 Generated from method MR.Vector<MR.MeshTexture, MR.TextureId>::back.
 
unsafe new MR.? MeshTexture data ()
 Generated from method MR.Vector<MR.MeshTexture, MR.TextureId>::data.
 
unsafe void swap (MR.Vector_MRMeshTexture_MRTextureId b)
 Generated from method MR.Vector<MR.MeshTexture, MR.TextureId>::swap.
 

Static Public Member Functions

static unsafe implicit operator Vector_MRMeshTexture_MRTextureId (MR.Misc._Moved< MR.Std.Vector_MRMeshTexture > vec)
 moves data from the given std.vector<T> Generated from constructor MR.Vector<MR.MeshTexture, MR.TextureId>::Vector.
 

Properties

new unsafe MR.Std.Vector_MRMeshTexture vec [get, protected set]
 the user can directly manipulate the vector, anyway she cannot break anything
 
unsafe new MR.MeshTexture this[MR.TextureId i] [get]
 Generated from method MR.Vector<MR.MeshTexture, MR.TextureId>::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.MeshTexture, MR.TextureId>. This is the non-const half of the class.

Constructor & Destructor Documentation

◆ Vector_MRMeshTexture_MRTextureId() [1/7]

unsafe MR.Vector_MRMeshTexture_MRTextureId.Vector_MRMeshTexture_MRTextureId ( )
inline

Constructs an empty (default-constructed) instance.

◆ Vector_MRMeshTexture_MRTextureId() [2/7]

unsafe MR.Vector_MRMeshTexture_MRTextureId.Vector_MRMeshTexture_MRTextureId ( MR._ByValue_Vector_MRMeshTexture_MRTextureId _other)
inline

Generated from constructor MR.Vector<MR.MeshTexture, MR.TextureId>::Vector.

◆ Vector_MRMeshTexture_MRTextureId() [3/7]

MR.Vector_MRMeshTexture_MRTextureId.Vector_MRMeshTexture_MRTextureId ( Const_Vector_MRMeshTexture_MRTextureId _other)
inline

Generated from constructor MR.Vector<MR.MeshTexture, MR.TextureId>::Vector.

◆ Vector_MRMeshTexture_MRTextureId() [4/7]

MR.Vector_MRMeshTexture_MRTextureId.Vector_MRMeshTexture_MRTextureId ( Vector_MRMeshTexture_MRTextureId _other)
inline

Generated from constructor MR.Vector<MR.MeshTexture, MR.TextureId>::Vector.

◆ Vector_MRMeshTexture_MRTextureId() [5/7]

unsafe MR.Vector_MRMeshTexture_MRTextureId.Vector_MRMeshTexture_MRTextureId ( ulong size)
inline

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

◆ Vector_MRMeshTexture_MRTextureId() [6/7]

unsafe MR.Vector_MRMeshTexture_MRTextureId.Vector_MRMeshTexture_MRTextureId ( ulong size,
MR.Const_MeshTexture val )
inline

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

◆ Vector_MRMeshTexture_MRTextureId() [7/7]

unsafe MR.Vector_MRMeshTexture_MRTextureId.Vector_MRMeshTexture_MRTextureId ( MR.Misc._Moved< MR.Std.Vector_MRMeshTexture > vec)
inline

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

Member Function Documentation

◆ assign()

unsafe MR.Vector_MRMeshTexture_MRTextureId MR.Vector_MRMeshTexture_MRTextureId.assign ( MR._ByValue_Vector_MRMeshTexture_MRTextureId _other)
inline

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

◆ autoResizeAt()

unsafe MR.MeshTexture MR.Vector_MRMeshTexture_MRTextureId.autoResizeAt ( MR.TextureId i)
inline

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

◆ autoResizeSet() [1/2]

unsafe void MR.Vector_MRMeshTexture_MRTextureId.autoResizeSet ( MR.TextureId i,
MR._ByValue_MeshTexture 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.MeshTexture, MR.TextureId>::autoResizeSet.

◆ autoResizeSet() [2/2]

unsafe void MR.Vector_MRMeshTexture_MRTextureId.autoResizeSet ( MR.TextureId pos,
ulong len,
MR._ByValue_MeshTexture 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.MeshTexture, MR.TextureId>::autoResizeSet.

◆ back()

unsafe new MR.MeshTexture MR.Vector_MRMeshTexture_MRTextureId.back ( )
inline

Generated from method MR.Vector<MR.MeshTexture, MR.TextureId>::back.

◆ clear()

unsafe void MR.Vector_MRMeshTexture_MRTextureId.clear ( )
inline

Generated from method MR.Vector<MR.MeshTexture, MR.TextureId>::clear.

◆ data()

unsafe new MR.? MeshTexture MR.Vector_MRMeshTexture_MRTextureId.data ( )
inline

Generated from method MR.Vector<MR.MeshTexture, MR.TextureId>::data.

◆ emplaceBack() [1/2]

unsafe MR.MeshTexture MR.Vector_MRMeshTexture_MRTextureId.emplaceBack ( )
inline

Generated from method MR.Vector<MR.MeshTexture, MR.TextureId>::emplace_back<>.

◆ emplaceBack() [2/2]

unsafe MR.MeshTexture MR.Vector_MRMeshTexture_MRTextureId.emplaceBack ( MR.Misc._Moved< MR.MeshTexture > args)
inline

Generated from method MR.Vector<MR.MeshTexture, MR.TextureId>::emplace_back<MR.MeshTexture>.

◆ front()

unsafe new MR.MeshTexture MR.Vector_MRMeshTexture_MRTextureId.front ( )
inline

Generated from method MR.Vector<MR.MeshTexture, MR.TextureId>::front.

◆ GetEnumerator()

new IEnumerator< MR.MeshTexture > MR.Vector_MRMeshTexture_MRTextureId.GetEnumerator ( )
inline

◆ operator Vector_MRMeshTexture_MRTextureId()

static unsafe implicit MR.Vector_MRMeshTexture_MRTextureId.operator Vector_MRMeshTexture_MRTextureId ( MR.Misc._Moved< MR.Std.Vector_MRMeshTexture > vec)
inlinestatic

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

◆ popBack()

unsafe void MR.Vector_MRMeshTexture_MRTextureId.popBack ( )
inline

Generated from method MR.Vector<MR.MeshTexture, MR.TextureId>::pop_back.

◆ pushBack() [1/2]

unsafe void MR.Vector_MRMeshTexture_MRTextureId.pushBack ( MR.Const_MeshTexture t)
inline

Generated from method MR.Vector<MR.MeshTexture, MR.TextureId>::push_back.

◆ pushBack() [2/2]

unsafe void MR.Vector_MRMeshTexture_MRTextureId.pushBack ( MR.Misc._Moved< MR.MeshTexture > t)
inline

Generated from method MR.Vector<MR.MeshTexture, MR.TextureId>::push_back.

◆ reserve()

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

Generated from method MR.Vector<MR.MeshTexture, MR.TextureId>::reserve.

◆ resize() [1/2]

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

Generated from method MR.Vector<MR.MeshTexture, MR.TextureId>::resize.

◆ resize() [2/2]

unsafe void MR.Vector_MRMeshTexture_MRTextureId.resize ( ulong newSize,
MR.Const_MeshTexture t )
inline

Generated from method MR.Vector<MR.MeshTexture, MR.TextureId>::resize.

◆ resizeWithReserve() [1/2]

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

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

◆ resizeWithReserve() [2/2]

unsafe void MR.Vector_MRMeshTexture_MRTextureId.resizeWithReserve ( ulong newSize,
MR.Const_MeshTexture value )
inline

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

◆ swap()

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

Generated from method MR.Vector<MR.MeshTexture, MR.TextureId>::swap.

Property Documentation

◆ this[MR.TextureId i]

unsafe new MR.MeshTexture MR.Vector_MRMeshTexture_MRTextureId.this[MR.TextureId i]
get

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

◆ vec

new unsafe MR.Std.Vector_MRMeshTexture MR.Vector_MRMeshTexture_MRTextureId.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: