plan updated

This commit is contained in:
Martino Ferrari
2026-06-26 14:08:28 +02:00
parent c53a49e540
commit 336095c052
@@ -224,13 +224,7 @@ func normalizeValue(v any) Value {
return 1.0
}
return 0.0
case []interface{}:
out := make([]Value, len(t))
for i, e := range t {
out[i] = normalizeValue(e)
}
return out
case []Value:
case []interface{}: // note: []Value == []interface{} since Value = any, so this covers both
out := make([]Value, len(t))
for i, e := range t {
out[i] = normalizeValue(e)