Creates a new vector from a slice.
Copy-constructor
Constructs a new vector with reserved amount of elements worth of memory reserved.
Clears the vector, removing all elements from it.
Flips the endianness of the vector's contents.
Inserts a value into the vector.
Inserts a value into the vector.
Append a T to the vector.
Append a range to the vector.
Pops the back element of the vector.
Pops the front element of the vector.
Removes an element from the vector matching the given element.
Removes the element at the given index.
Removes the elements at the given index with the given element count.
Attempts to reserve memory in the vector.
Resizes the vector.
Reverses the contents of the vector
Take ownership of the memory owned by the vector.
Gets a pointer to the last element of the vector.
The capacity of the vector.
Whether the vector is empty.
Gets a pointer to the first element of the vector.
The length of the vector
Gets a pointer to the first element of the vector.
The length of the vector, in bytes.
Gets the internal memory slice.
A @nogc dynamic array.