Value is a generic interface for values resulting from a query evaluation.
| 20 | |
| 21 | // Value is a generic interface for values resulting from a query evaluation. |
| 22 | type Value interface { |
| 23 | Type() ValueType |
| 24 | String() string |
| 25 | } |
| 26 | |
| 27 | func (Matrix) Type() ValueType { return ValMatrix } |
| 28 | func (Vector) Type() ValueType { return ValVector } |
no outgoing calls
no test coverage detected