-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Curried Function Lengths Are Wrong #34
Comments
If no. 3 creates more trouble than it's worth, I am ok with no. 2 and living with that |
My vote continues to be for option 2. I'm not interested in taking #35 any further, but @rpearce (or anyone) please feel free to bang on it. |
I'm with you, then. @flintinatux: any opinions? |
Depends on which convention we want to follow. I intentionally decided to make |
The use of
uncurryN
is causing functions to return with incorrect lengths. See #26 .Examples:
Options:
In other words, remove auto curry. Force
combineAll(arr)(data)
& drop support forcombineAll(arr, data)
. Ramda does not allowjuxt(arr, data)
for this exact reason.The text was updated successfully, but these errors were encountered: