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
-
How would I adapt the
F.Curry
function to make the first param required on each call to a curried function?The current
F.Curry
function 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:
Beta Was this translation helpful? Give feedback.
All reactions