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.
()
| 347 | // LateFunctionBinding indicates that the function has a binding which is not known at compile time. |
| 348 | // This is useful for functions which have side-effects or are not deterministically computable. |
| 349 | func LateFunctionBinding() OverloadOpt { |
| 350 | return decls.LateFunctionBinding() |
| 351 | } |
| 352 | |
| 353 | // AsyncBinding provides the implementation of an asynchronous overload. The provided function |
| 354 | // is called in its own goroutine with the provided context. The function should block until |