xgo/objects/callable_func.go

5 lines
150 B
Go
Raw Normal View History

2019-01-17 12:56:05 +03:00
package objects
// CallableFunc is a function signature for the callable functions.
type CallableFunc = func(args ...Object) (ret Object, err error)