VectorFloat64 represents a FLOAT64-encoded vector blob. note: intended for search/index query commands such as FT.HYBRID.
| 83 | // VectorFloat64 represents a FLOAT64-encoded vector blob. |
| 84 | // note: intended for search/index query commands such as FT.HYBRID. |
| 85 | type VectorFloat64 struct { |
| 86 | Val []byte |
| 87 | } |
| 88 | |
| 89 | func (v *VectorFloat64) Value() []any { |
| 90 | return []any{vectorFormatF64, v.Val} |
nothing calls this directly
no outgoing calls
no test coverage detected