AddFunctions adds one or more functions to the config.
(funcs ...*Function)
| 178 | |
| 179 | // AddFunctions adds one or more functions to the config. |
| 180 | func (c *Config) AddFunctions(funcs ...*Function) *Config { |
| 181 | c.Functions = append(c.Functions, funcs...) |
| 182 | return c |
| 183 | } |
| 184 | |
| 185 | // SetStdLib configures the LibrarySubset for the standard library. |
| 186 | func (c *Config) SetStdLib(subset *LibrarySubset) *Config { |
no outgoing calls