Represents a Vector of values
Gets how each value within the Vector is stored
A ValueType representing how each value in the Vector is stored
Gets how many values are within the Vector
The number of values within the Vector
float as_floatAt( |
| ) const |
Gets the value stored at the given 0-based index, as a 4-byte float
index uint16 | The 0-based index of which to get the value |
The value stored at the given index, as a float
std::out_of_range: The position requested is out of range
uint16 as_uint16At( |
| ) const |
Gets the value stored at the given 0-based index, as a 2-byte unsigned integer
index uint16 | The 0-based index of which to get the value |
The value stored at the given index, as an uint16
std::out_of_range: The position requested is out of range
uint8 as_uint8At( |
| ) const |
Gets the value stored at the given 0-based index, as a 1-byte uint8
index uint16 | The 0-based index of which to get the value |
The value stored at the given index, as an uint8
std::out_of_range: The position requested is out of range
Creates a string from the Vector
A string representing the entire Vector object (ex. "[1.2,3.4,5.6]")