Documentation
¶
Index ¶
- Variables
- func Acos(args ...interface{}) (interface{}, error)
- func Acosh(args ...interface{}) (interface{}, error)
- func Asin(args ...interface{}) (interface{}, error)
- func Asinh(args ...interface{}) (interface{}, error)
- func Atan(args ...interface{}) (interface{}, error)
- func Atan2(args ...interface{}) (interface{}, error)
- func Atanh(args ...interface{}) (interface{}, error)
- func Ceil(args ...interface{}) (interface{}, error)
- func Cos(args ...interface{}) (interface{}, error)
- func Cosh(args ...interface{}) (interface{}, error)
- func Exp(args ...interface{}) (interface{}, error)
- func Exp2(args ...interface{}) (interface{}, error)
- func Floor(args ...interface{}) (interface{}, error)
- func If(args ...interface{}) (interface{}, error)
- func IfNull(args ...interface{}) (interface{}, error)
- func IsDefined(args ...interface{}) (interface{}, error)
- func IsWrongParamType(err error) bool
- func IsWrongParamsCount(err error) bool
- func Log(args ...interface{}) (interface{}, error)
- func Log10(args ...interface{}) (interface{}, error)
- func Max(args ...interface{}) (interface{}, error)
- func Min(args ...interface{}) (interface{}, error)
- func NewWrongParamType(index int) error
- func Round(args ...interface{}) (interface{}, error)
- func Sin(args ...interface{}) (interface{}, error)
- func Sinh(args ...interface{}) (interface{}, error)
- func Sqrt(args ...interface{}) (interface{}, error)
- func Tan(args ...interface{}) (interface{}, error)
- func Tanh(args ...interface{}) (interface{}, error)
- func ToFloat64(v interface{}) (float64, bool)
- func Trunc(args ...interface{}) (interface{}, error)
Constants ¶
This section is empty.
Variables ¶
View Source
var FlowFunctions map[string]govaluate.ExpressionFunction = map[string]govaluate.ExpressionFunction{ "isDefined": IsDefined, "ifnull": IfNull, "if": If, }
View Source
var Functions map[string]govaluate.ExpressionFunction
View Source
var MathFunctions map[string]govaluate.ExpressionFunction = map[string]govaluate.ExpressionFunction{ "cos": Cos, "acos": Acos, "cosh": Cosh, "acosh": Acosh, "exp": Exp, "exp2": Exp2, "log": Log, "log10": Log10, "round": Round, "floor": Floor, "ceil": Ceil, "trunc": Trunc, "sin": Sin, "asin": Asin, "sinh": Sinh, "asinh": Asinh, "sqrt": Sqrt, "tan": Tan, "atan": Atan, "atan2": Atan2, "tanh": Tanh, "atanh": Atanh, "max": Max, "min": Min, }
View Source
var WrongParamsCount = errors.New("wrong params count")
Functions ¶
func IsWrongParamType ¶
func IsWrongParamsCount ¶
func NewWrongParamType ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.