Curry function with required first param #342
Unanswered
wagerfield
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
How would I adapt the
F.Curryfunction to make the first param required on each call to a curried function?The current
F.Curryfunction makes ALL params partial / optional meaning you can call the curried functions with no args/params. I would like the first param to be required in each call to a curried function.See my desired behaviour below:
All reactions