Module vector_type

Source

Structs§

VectorType
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]”