1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-01 21:33:28 +00:00
Beego/vendor/github.com/Knetic/govaluate/expressionFunctions.go

9 lines
338 B
Go
Raw Normal View History

2018-07-30 04:05:51 +00:00
package govaluate
/*
Represents a function that can be called from within an expression.
This method must return an error if, for any reason, it is unable to produce exactly one unambiguous result.
An error returned will halt execution of the expression.
*/
type ExpressionFunction func(arguments ...interface{}) (interface{}, error)