Structs§
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§
- Parses a string to a vector type value Valid input format: “[1.0,2.0,3.0]”, “[1.0, 2.0, 3.0]”
- Converts a vector type value to string for example: [1.0, 2.0, 3.0] -> “[1.0,2.0,3.0]”