Lazy `parameter {}` docs: computed first time "used" -> "declared"
BenWoodworth opened this issue · 0 comments
BenWoodworth commented
Behavior has changed since these docs were written, so it's no longer accurate.
Change:
Declares a parameter with the given
lazyArguments
. The arguments are only computed the first time the parameter isused, and not at all if useddeclared.
Thisparameter
function is useful to avoid computing the arguments every iteration. Instead, these arguments will only be computedthe first time the parameter is usedas needed.