in reply to Re: Seek Help Refactoring
in thread Seek Help Refactoring

xdg wrote:

Is the conditional known before the if-else logic? If so, why not just pass them as a precomputed argument rather than as a closure?

No, it is not. Some of the variables that go into the conditional are more tightly scoped than that or not even declared yet. So I can't pass a pre-computed argument.

jimk