|
|
|
@ -31,21 +31,21 @@ var stdlibFunctions = map[string]function.Function{
|
|
|
|
|
"cidrnetmask": cidr.NetmaskFunc,
|
|
|
|
|
"cidrsubnet": cidr.SubnetFunc,
|
|
|
|
|
"cidrsubnets": cidr.SubnetsFunc,
|
|
|
|
|
"csvdecode": stdlib.CSVDecodeFunc,
|
|
|
|
|
"coalesce": stdlib.CoalesceFunc,
|
|
|
|
|
"coalescelist": stdlib.CoalesceListFunc,
|
|
|
|
|
"compact": stdlib.CompactFunc,
|
|
|
|
|
"concat": stdlib.ConcatFunc,
|
|
|
|
|
"contains": stdlib.ContainsFunc,
|
|
|
|
|
"convert": typeexpr.ConvertFunc,
|
|
|
|
|
"csvdecode": stdlib.CSVDecodeFunc,
|
|
|
|
|
"distinct": stdlib.DistinctFunc,
|
|
|
|
|
"divide": stdlib.DivideFunc,
|
|
|
|
|
"element": stdlib.ElementFunc,
|
|
|
|
|
"equal": stdlib.EqualFunc,
|
|
|
|
|
"flatten": stdlib.FlattenFunc,
|
|
|
|
|
"floor": stdlib.FloorFunc,
|
|
|
|
|
"formatdate": stdlib.FormatDateFunc,
|
|
|
|
|
"format": stdlib.FormatFunc,
|
|
|
|
|
"formatdate": stdlib.FormatDateFunc,
|
|
|
|
|
"formatlist": stdlib.FormatListFunc,
|
|
|
|
|
"greaterthan": stdlib.GreaterThanFunc,
|
|
|
|
|
"greaterthanorequalto": stdlib.GreaterThanOrEqualToFunc,
|
|
|
|
@ -53,10 +53,10 @@ var stdlibFunctions = map[string]function.Function{
|
|
|
|
|
"indent": stdlib.IndentFunc,
|
|
|
|
|
"index": stdlib.IndexFunc,
|
|
|
|
|
"int": stdlib.IntFunc,
|
|
|
|
|
"join": stdlib.JoinFunc,
|
|
|
|
|
"jsondecode": stdlib.JSONDecodeFunc,
|
|
|
|
|
"jsonencode": stdlib.JSONEncodeFunc,
|
|
|
|
|
"keys": stdlib.KeysFunc,
|
|
|
|
|
"join": stdlib.JoinFunc,
|
|
|
|
|
"length": stdlib.LengthFunc,
|
|
|
|
|
"lessthan": stdlib.LessThanFunc,
|
|
|
|
|
"lessthanorequalto": stdlib.LessThanOrEqualToFunc,
|
|
|
|
@ -70,15 +70,16 @@ var stdlibFunctions = map[string]function.Function{
|
|
|
|
|
"modulo": stdlib.ModuloFunc,
|
|
|
|
|
"multiply": stdlib.MultiplyFunc,
|
|
|
|
|
"negate": stdlib.NegateFunc,
|
|
|
|
|
"notequal": stdlib.NotEqualFunc,
|
|
|
|
|
"not": stdlib.NotFunc,
|
|
|
|
|
"notequal": stdlib.NotEqualFunc,
|
|
|
|
|
"or": stdlib.OrFunc,
|
|
|
|
|
"parseint": stdlib.ParseIntFunc,
|
|
|
|
|
"pow": stdlib.PowFunc,
|
|
|
|
|
"range": stdlib.RangeFunc,
|
|
|
|
|
"regexall": stdlib.RegexAllFunc,
|
|
|
|
|
"regex": stdlib.RegexFunc,
|
|
|
|
|
"regex_replace": stdlib.RegexReplaceFunc,
|
|
|
|
|
"regex": stdlib.RegexFunc,
|
|
|
|
|
"regexall": stdlib.RegexAllFunc,
|
|
|
|
|
"replace": stdlib.ReplaceFunc,
|
|
|
|
|
"reverse": stdlib.ReverseFunc,
|
|
|
|
|
"reverselist": stdlib.ReverseListFunc,
|
|
|
|
|
"rsadecrypt": crypto.RsaDecryptFunc,
|
|
|
|
|