Added time, array, num and generic gval functions

This commit is contained in:
Peter Grlica
2021-03-18 17:05:48 +01:00
parent 0312dbe4bf
commit 49e5610af3
11 changed files with 1034 additions and 12 deletions
+2
View File
@@ -3,6 +3,7 @@ package expr
import (
"context"
"fmt"
"github.com/PaesslerAG/gval"
)
@@ -84,6 +85,7 @@ func AllFunctions() []gval.Language {
ff = append(ff, StringFunctions()...)
ff = append(ff, NumericFunctions()...)
ff = append(ff, TimeFunctions()...)
ff = append(ff, ArrayFunctions()...)
return ff
}