VectorInt8 represents an INT8-encoded vector blob. note: intended for search/index query commands such as FT.HYBRID.
| 95 | // VectorInt8 represents an INT8-encoded vector blob. |
| 96 | // note: intended for search/index query commands such as FT.HYBRID. |
| 97 | type VectorInt8 struct { |
| 98 | Val []byte |
| 99 | } |
| 100 | |
| 101 | func (v *VectorInt8) Value() []any { |
| 102 | return []any{vectorFormatI8, v.Val} |
nothing calls this directly
no outgoing calls
no test coverage detected