Versions in this module Expand all Collapse all v1 v1.21.0 Mar 13, 2026 Changes in this version + type Expr interface + Eval func(row Row) Value + func Parse(input string) (Expr, error) + type Row interface + Field func(name string) Value + type Value struct + Bool bool + Int int + Kind ValueKind + Str string + func BoolVal(b bool) Value + func IntVal(n int) Value + func NullVal() Value + func StringVal(s string) Value + type ValueKind int + const KindBool + const KindInt + const KindNull + const KindString