VectorFloat16 represents a FLOAT16-encoded vector blob. note: intended for search/index query commands such as FT.HYBRID.
| 59 | // VectorFloat16 represents a FLOAT16-encoded vector blob. |
| 60 | // note: intended for search/index query commands such as FT.HYBRID. |
| 61 | type VectorFloat16 struct { |
| 62 | Val []byte |
| 63 | } |
| 64 | |
| 65 | func (v *VectorFloat16) Value() []any { |
| 66 | return []any{vectorFormatF16, v.Val} |
nothing calls this directly
no outgoing calls
no test coverage detected