std.vector<T>-like container that requires specific indexing type, More...
Inheritance diagram for MR.Vector_Int_MRFaceId:Public Member Functions | |
| unsafe | Vector_Int_MRFaceId () |
| Constructs an empty (default-constructed) instance. | |
| unsafe | Vector_Int_MRFaceId (MR._ByValue_Vector_Int_MRFaceId _other) |
Generated from constructor MR.Vector<int, MR.FaceId>::Vector. | |
| Vector_Int_MRFaceId (Const_Vector_Int_MRFaceId _other) | |
Generated from constructor MR.Vector<int, MR.FaceId>::Vector. | |
| Vector_Int_MRFaceId (Vector_Int_MRFaceId _other) | |
Generated from constructor MR.Vector<int, MR.FaceId>::Vector. | |
| unsafe | Vector_Int_MRFaceId (ulong size) |
creates a vector with size elements with default value Generated from constructor MR.Vector<int, MR.FaceId>::Vector. | |
| unsafe | Vector_Int_MRFaceId (ulong size, int val) |
creates a vector with size elements with the given value Generated from constructor MR.Vector<int, MR.FaceId>::Vector. | |
| unsafe | Vector_Int_MRFaceId (MR.Misc._Moved< MR.Std.Vector_Int > vec) |
moves data from the given std.vector<T> Generated from constructor MR.Vector<int, MR.FaceId>::Vector. | |
| unsafe MR.Vector_Int_MRFaceId | assign (MR._ByValue_Vector_Int_MRFaceId _other) |
Generated from method MR.Vector<int, MR.FaceId>::operator=. | |
| unsafe void | clear () |
Generated from method MR.Vector<int, MR.FaceId>::clear. | |
| unsafe void | resize (ulong newSize) |
Generated from method MR.Vector<int, MR.FaceId>::resize. | |
| unsafe void | resize (ulong newSize, int t) |
Generated from method MR.Vector<int, MR.FaceId>::resize. | |
| unsafe void | reserve (ulong capacity) |
Generated from method MR.Vector<int, MR.FaceId>::reserve. | |
| unsafe void | resizeWithReserve (ulong newSize) |
doubles reserved memory until resize(newSize) can be done without reallocation Generated from method MR.Vector<int, MR.FaceId>::resizeWithReserve. | |
| unsafe void | resizeWithReserve (ulong newSize, int value) |
doubles reserved memory until resize(newSize, value) can be done without reallocation Generated from method MR.Vector<int, MR.FaceId>::resizeWithReserve. | |
| unsafe void | autoResizeSet (MR.FaceId pos, ulong len, int 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<int, MR.FaceId>::autoResizeSet. | |
| unsafe void | autoResizeSet (MR.FaceId i, int val) |
sets the element #i to the given value, adjusting the size of the vector to include new element Generated from method MR.Vector<int, MR.FaceId>::autoResizeSet. | |
| unsafe ref int | autoResizeAt (MR.FaceId i) |
this accessor automatically adjusts the size of the vector Generated from method MR.Vector<int, MR.FaceId>::autoResizeAt. | |
| unsafe void | pushBack (int t) |
Generated from method MR.Vector<int, MR.FaceId>::push_back. | |
| unsafe void | pushBack (MR.Misc._MoveRef _move_t, int t) |
Generated from method MR.Vector<int, MR.FaceId>::push_back. | |
| unsafe void | popBack () |
Generated from method MR.Vector<int, MR.FaceId>::pop_back. | |
| unsafe ref int | emplaceBack () |
Generated from method MR.Vector<int, MR.FaceId>::emplace_back<>. | |
| unsafe new ref int | front () |
Generated from method MR.Vector<int, MR.FaceId>::front. | |
| unsafe new ref int | back () |
Generated from method MR.Vector<int, MR.FaceId>::back. | |
| unsafe new MR.Misc.? Ref< int > | data () |
Generated from method MR.Vector<int, MR.FaceId>::data. | |
| unsafe void | swap (MR.Vector_Int_MRFaceId b) |
Generated from method MR.Vector<int, MR.FaceId>::swap. | |
Static Public Member Functions | |
| static unsafe implicit | operator Vector_Int_MRFaceId (MR.Misc._Moved< MR.Std.Vector_Int > vec) |
moves data from the given std.vector<T> Generated from constructor MR.Vector<int, MR.FaceId>::Vector. | |
Properties | |
| new unsafe MR.Std.Vector_Int | vec [get, protected set] |
| the user can directly manipulate the vector, anyway she cannot break anything | |
| unsafe new ref int | this[MR.FaceId i] [get] |
Generated from method MR.Vector<int, MR.FaceId>::operator[]. | |
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.Vector<int, MR.FaceId>. This is the non-const half of the class. |
|
inline |
Constructs an empty (default-constructed) instance.
|
inline |
Generated from constructor MR.Vector<int, MR.FaceId>::Vector.
|
inline |
Generated from constructor MR.Vector<int, MR.FaceId>::Vector.
|
inline |
Generated from constructor MR.Vector<int, MR.FaceId>::Vector.
|
inline |
creates a vector with size elements with default value Generated from constructor MR.Vector<int, MR.FaceId>::Vector.
|
inline |
creates a vector with size elements with the given value Generated from constructor MR.Vector<int, MR.FaceId>::Vector.
|
inline |
moves data from the given std.vector<T> Generated from constructor MR.Vector<int, MR.FaceId>::Vector.
|
inline |
Generated from method MR.Vector<int, MR.FaceId>::operator=.
|
inline |
this accessor automatically adjusts the size of the vector Generated from method MR.Vector<int, MR.FaceId>::autoResizeAt.
|
inline |
sets the element #i to the given value, adjusting the size of the vector to include new element Generated from method MR.Vector<int, MR.FaceId>::autoResizeSet.
|
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<int, MR.FaceId>::autoResizeSet.
|
inline |
Generated from method MR.Vector<int, MR.FaceId>::back.
|
inline |
Generated from method MR.Vector<int, MR.FaceId>::clear.
|
inline |
Generated from method MR.Vector<int, MR.FaceId>::data.
|
inline |
Generated from method MR.Vector<int, MR.FaceId>::emplace_back<>.
|
inline |
Generated from method MR.Vector<int, MR.FaceId>::front.
|
inlinestatic |
moves data from the given std.vector<T> Generated from constructor MR.Vector<int, MR.FaceId>::Vector.
|
inline |
Generated from method MR.Vector<int, MR.FaceId>::pop_back.
|
inline |
Generated from method MR.Vector<int, MR.FaceId>::push_back.
|
inline |
Generated from method MR.Vector<int, MR.FaceId>::push_back.
|
inline |
Generated from method MR.Vector<int, MR.FaceId>::reserve.
|
inline |
Generated from method MR.Vector<int, MR.FaceId>::resize.
|
inline |
Generated from method MR.Vector<int, MR.FaceId>::resize.
|
inline |
doubles reserved memory until resize(newSize) can be done without reallocation Generated from method MR.Vector<int, MR.FaceId>::resizeWithReserve.
|
inline |
doubles reserved memory until resize(newSize, value) can be done without reallocation Generated from method MR.Vector<int, MR.FaceId>::resizeWithReserve.
|
inline |
Generated from method MR.Vector<int, MR.FaceId>::swap.
|
get |
Generated from method MR.Vector<int, MR.FaceId>::operator[].
|
getprotected set |
the user can directly manipulate the vector, anyway she cannot break anything