12345678910111213141516171819202122232425262728293031323334353637383940 |
- package rumble
- type Function interface {
-
- Name() string
-
- Validate(argsNum int, runtime Runtime) RuntimeError
-
- Execute(argsVal []interface{}, vars Variables, runtime Runtime) (interface{}, RuntimeError)
- }
|