LateFunctionBinding indicates that the function has a binding which is not known at compile time. This is useful for functions which have side-effects or are not deterministically computable.
()
| 343 | // LateFunctionBinding indicates that the function has a binding which is not known at compile time. |
| 344 | // This is useful for functions which have side-effects or are not deterministically computable. |
| 345 | func LateFunctionBinding() OverloadOpt { |
| 346 | return decls.LateFunctionBinding() |
| 347 | } |
| 348 | |
| 349 | // OverloadIsNonStrict enables the function to be called with error and unknown argument values. |
| 350 | // |