Versions in this module Expand all Collapse all v0 v0.1.2 Oct 15, 2025 v0.1.1 Sep 21, 2025 Changes in this version + type ArgInfo struct + Description string + Name string + Type datatype.DataType + type DeprecationInfo struct + Description string + IsDeprecated bool + Version string + type Documentation struct + DeprecationInfo DeprecationInfo + Description string + Examples []string + Name string + Since string + type EvaluatorInterface interface + AddToBuffer func(format string, args ...any) + Terminate func(code byte) + type Handler func(e EvaluatorInterface, args []datavalue.Value) (datavalue.Value, error) + type Info struct + Documentation Documentation + FunctionType Type + Handler Handler + IsBuiltin bool + PackageName string + Parameters []ArgInfo + ReturnValues []ArgInfo + func MakeFunction(documentation Documentation, packageName string, functionType Type, ...) Info + func (f *Info) Expr() string + type PackageInfo struct + Functions map[string]Info + type Type int + const FunctionTypeFixed + const FunctionTypeMixedVariadic + const FunctionTypeVariadic