- back
inout(T) back()
Undocumented in source. Be warned that the author may not have intended to support it.
- dup
Vec!T dup()
Create a shallow copy of this Vec.
- front
inout(T) front()
Undocumented in source. Be warned that the author may not have intended to support it.
- opAssign
typeof(null) opAssign(typeof(null) )
Undocumented in source. Be warned that the author may not have intended to support it.
- opCast
T opCast()
Undocumented in source. Be warned that the author may not have intended to support it.
- opIndex
inout(T) opIndex(size_t index)
Undocumented in source. Be warned that the author may not have intended to support it.
- opOpAssign
Vec opOpAssign(T[] values)
Undocumented in source. Be warned that the author may not have intended to support it.
- opSlice
inout(T)[] opSlice()
Return a slice of the held items.
Ownership is unaffected, so this is a "view" into the contents.
Can be used to perform range operations and iteration.
- popBack
void popBack()
Undocumented in source. Be warned that the author may not have intended to support it.
- popFront
void popFront()
Undocumented in source. Be warned that the author may not have intended to support it.
- remove
void remove(size_t index)
Remove the element with the given index, shifting all
elements after it to the left.