Structs§
- Vector
Type VectorType
is a data type for vector data with a fixed dimension. The type of items in the vector is float32. It is stored as binary data that contains the concatenated float32 values.
Functions§
- parse_
string_ to_ vector_ type_ value - Parses a string to a vector type value Valid input format: “[1.0,2.0,3.0]”, “[1.0, 2.0, 3.0]”
- vector_
type_ value_ to_ string - Converts a vector type value to string for example: [1.0, 2.0, 3.0] -> “[1.0,2.0,3.0]”