Say I have an API that takes a callback, and I have two functions, one for callbacks with arguments and one for nullary callbacks. I must do it this way. What naming choice would you use to distinguish the two variants? I feel like "nullary" is obscurantist
@mcc I'd probably name them _0, _1, _splat or something based on the signature but that's probably more obscurantist
@bob For a strange and application-specific reason, the only possible options are _0 and _1. This said, _0 and _1 *are* quite clear… hm