ExcludeOverloads defines an OverloadSelector which deny-lists a set of overloads by their ids.
(overloadIDs ...string)
| 214 | |
| 215 | // ExcludeOverloads defines an OverloadSelector which deny-lists a set of overloads by their ids. |
| 216 | func ExcludeOverloads(overloadIDs ...string) OverloadSelector { |
| 217 | return decls.ExcludeOverloads(overloadIDs...) |
| 218 | } |
| 219 | |
| 220 | // FunctionDecls provides one or more fully formed function declarations to be added to the environment. |
| 221 | func FunctionDecls(funcs ...*decls.FunctionDecl) EnvOption { |