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

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

Inheritance diagram for MR.Vector_MRTextureId_MRTextureId:

Classes

class  _Enumerator

Public Member Functions

new IEnumerator< MR.Misc.Ref< MR.TextureId > > GetEnumerator ()
unsafe Vector_MRTextureId_MRTextureId ()
 Constructs an empty (default-constructed) instance.
unsafe Vector_MRTextureId_MRTextureId (MR._ByValue_Vector_MRTextureId_MRTextureId _other)
 Generated from constructor MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;::Vector.
 Vector_MRTextureId_MRTextureId (Const_Vector_MRTextureId_MRTextureId _other)
 Generated from constructor MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;::Vector.
 Vector_MRTextureId_MRTextureId (Vector_MRTextureId_MRTextureId _other)
 Generated from constructor MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;::Vector.
unsafe Vector_MRTextureId_MRTextureId (ulong size)
 creates a vector with size elements with default value Generated from constructor MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;::Vector.
unsafe Vector_MRTextureId_MRTextureId (ulong size, in MR.TextureId val)
 creates a vector with size elements with the given value Generated from constructor MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;::Vector.
unsafe Vector_MRTextureId_MRTextureId (MR.Misc._Moved< MR.Std.Vector_MRTextureId > vec)
 moves data from the given std::vector&lt;T&gt; Generated from constructor MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;::Vector.
unsafe MR.Vector_MRTextureId_MRTextureId assign (MR._ByValue_Vector_MRTextureId_MRTextureId _other)
 Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;::operator=.
unsafe void clear ()
 Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;clear.
unsafe void resize (ulong newSize)
 Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;resize.
unsafe void resize (ulong newSize, in MR.TextureId t)
 Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;resize.
unsafe void resizeNoInit (ulong targetSize)
 Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;resizeNoInit.
unsafe void reserve (ulong capacity)
 Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;reserve.
unsafe void resizeWithReserve (ulong newSize)
 doubles reserved memory until resize(newSize) can be done without reallocation Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;resizeWithReserve.
unsafe void resizeWithReserve (ulong newSize, in MR.TextureId value)
 doubles reserved memory until resize(newSize, value) can be done without reallocation Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;resizeWithReserve.
unsafe void autoResizeSet (MR.TextureId pos, ulong len, MR.TextureId 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&amp;lt;MR.TextureId, MR.TextureId&amp;gt;autoResizeSet.
unsafe void autoResizeSet (MR.TextureId i, MR.TextureId val)
 sets the element #i to the given value, adjusting the size of the vector to include new element Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;autoResizeSet.
unsafe ref MR.TextureId autoResizeAt (MR.TextureId i)
 this accessor automatically adjusts the size of the vector Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;autoResizeAt.
unsafe void pushBack (in MR.TextureId t)
 Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;::push_back.
unsafe void pushBack (MR.Misc._MoveRef _move_t, in MR.TextureId t)
 Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;::push_back.
unsafe void popBack ()
 Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;::pop_back.
unsafe ref MR.TextureId emplaceBack ()
 Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;::emplace_back&amp;lt;&amp;gt;.
unsafe new ref MR.TextureId front ()
 Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;front.
unsafe new ref MR.TextureId back ()
 Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;back.
unsafe new MR.Misc.? Ref< MR.TextureIddata ()
 Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;data.
unsafe void swap (MR.Vector_MRTextureId_MRTextureId b)
 Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;swap.

Static Public Member Functions

static unsafe implicit operator Vector_MRTextureId_MRTextureId (MR.Misc._Moved< MR.Std.Vector_MRTextureId > vec)
 moves data from the given std::vector&lt;T&gt; Generated from constructor MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;::Vector.

Properties

new unsafe MR.Std.Vector_MRTextureId vec [get, protected set]
 The user can directly manipulate the vector, they can't break anything anyway.
unsafe new ref MR.TextureId this[MR.TextureId i] [get]
 Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;::operator[].

Detailed Description

std::vector&lt;T&gt;-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&amp;lt;MR.TextureId, MR.TextureId&amp;gt;. This is the non-const half of the class.

Constructor & Destructor Documentation

◆ Vector_MRTextureId_MRTextureId() [1/7]

unsafe MR.Vector_MRTextureId_MRTextureId.Vector_MRTextureId_MRTextureId ( )
inline

Constructs an empty (default-constructed) instance.

◆ Vector_MRTextureId_MRTextureId() [2/7]

unsafe MR.Vector_MRTextureId_MRTextureId.Vector_MRTextureId_MRTextureId ( MR._ByValue_Vector_MRTextureId_MRTextureId _other)
inline

Generated from constructor MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;::Vector.

◆ Vector_MRTextureId_MRTextureId() [3/7]

MR.Vector_MRTextureId_MRTextureId.Vector_MRTextureId_MRTextureId ( Const_Vector_MRTextureId_MRTextureId _other)
inline

Generated from constructor MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;::Vector.

◆ Vector_MRTextureId_MRTextureId() [4/7]

MR.Vector_MRTextureId_MRTextureId.Vector_MRTextureId_MRTextureId ( Vector_MRTextureId_MRTextureId _other)
inline

Generated from constructor MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;::Vector.

◆ Vector_MRTextureId_MRTextureId() [5/7]

unsafe MR.Vector_MRTextureId_MRTextureId.Vector_MRTextureId_MRTextureId ( ulong size)
inline

creates a vector with size elements with default value Generated from constructor MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;::Vector.

◆ Vector_MRTextureId_MRTextureId() [6/7]

unsafe MR.Vector_MRTextureId_MRTextureId.Vector_MRTextureId_MRTextureId ( ulong size,
in MR.TextureId val )
inline

creates a vector with size elements with the given value Generated from constructor MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;::Vector.

◆ Vector_MRTextureId_MRTextureId() [7/7]

unsafe MR.Vector_MRTextureId_MRTextureId.Vector_MRTextureId_MRTextureId ( MR.Misc._Moved< MR.Std.Vector_MRTextureId > vec)
inline

moves data from the given std::vector&lt;T&gt; Generated from constructor MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;::Vector.

Member Function Documentation

◆ assign()

unsafe MR.Vector_MRTextureId_MRTextureId MR.Vector_MRTextureId_MRTextureId.assign ( MR._ByValue_Vector_MRTextureId_MRTextureId _other)
inline

Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;::operator=.

◆ autoResizeAt()

unsafe ref MR.TextureId MR.Vector_MRTextureId_MRTextureId.autoResizeAt ( MR.TextureId i)
inline

this accessor automatically adjusts the size of the vector Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;autoResizeAt.

◆ autoResizeSet() [1/2]

unsafe void MR.Vector_MRTextureId_MRTextureId.autoResizeSet ( MR.TextureId i,
MR.TextureId 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&amp;lt;MR.TextureId, MR.TextureId&amp;gt;autoResizeSet.

◆ autoResizeSet() [2/2]

unsafe void MR.Vector_MRTextureId_MRTextureId.autoResizeSet ( MR.TextureId pos,
ulong len,
MR.TextureId 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&amp;lt;MR.TextureId, MR.TextureId&amp;gt;autoResizeSet.

◆ back()

unsafe new ref MR.TextureId MR.Vector_MRTextureId_MRTextureId.back ( )
inline

Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;back.

◆ clear()

unsafe void MR.Vector_MRTextureId_MRTextureId.clear ( )
inline

Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;clear.

◆ data()

unsafe new MR.Misc.? Ref< MR.TextureId > MR.Vector_MRTextureId_MRTextureId.data ( )
inline

Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;data.

◆ emplaceBack()

unsafe ref MR.TextureId MR.Vector_MRTextureId_MRTextureId.emplaceBack ( )
inline

Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;::emplace_back&amp;lt;&amp;gt;.

◆ front()

unsafe new ref MR.TextureId MR.Vector_MRTextureId_MRTextureId.front ( )
inline

Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;front.

◆ GetEnumerator()

new IEnumerator< MR.Misc.Ref< MR.TextureId > > MR.Vector_MRTextureId_MRTextureId.GetEnumerator ( )
inline

◆ operator Vector_MRTextureId_MRTextureId()

unsafe implicit MR.Vector_MRTextureId_MRTextureId.operator Vector_MRTextureId_MRTextureId ( MR.Misc._Moved< MR.Std.Vector_MRTextureId > vec)
inlinestatic

moves data from the given std::vector&lt;T&gt; Generated from constructor MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;::Vector.

◆ popBack()

unsafe void MR.Vector_MRTextureId_MRTextureId.popBack ( )
inline

Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;::pop_back.

◆ pushBack() [1/2]

unsafe void MR.Vector_MRTextureId_MRTextureId.pushBack ( in MR.TextureId t)
inline

Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;::push_back.

◆ pushBack() [2/2]

unsafe void MR.Vector_MRTextureId_MRTextureId.pushBack ( MR.Misc._MoveRef _move_t,
in MR.TextureId t )
inline

Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;::push_back.

◆ reserve()

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

Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;reserve.

◆ resize() [1/2]

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

Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;resize.

◆ resize() [2/2]

unsafe void MR.Vector_MRTextureId_MRTextureId.resize ( ulong newSize,
in MR.TextureId t )
inline

Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;resize.

◆ resizeNoInit()

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

Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;resizeNoInit.

◆ resizeWithReserve() [1/2]

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

doubles reserved memory until resize(newSize) can be done without reallocation Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;resizeWithReserve.

◆ resizeWithReserve() [2/2]

unsafe void MR.Vector_MRTextureId_MRTextureId.resizeWithReserve ( ulong newSize,
in MR.TextureId value )
inline

doubles reserved memory until resize(newSize, value) can be done without reallocation Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;resizeWithReserve.

◆ swap()

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

Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;swap.

Property Documentation

◆ this[MR.TextureId i]

unsafe new ref MR.TextureId MR.Vector_MRTextureId_MRTextureId.this[MR.TextureId i]
get

Generated from method MR::Vector&amp;lt;MR.TextureId, MR.TextureId&amp;gt;::operator[].

◆ vec

new unsafe MR.Std.Vector_MRTextureId MR.Vector_MRTextureId_MRTextureId.vec
getprotected set

The user can directly manipulate the vector, they can't break anything anyway.


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