-
Notifications
You must be signed in to change notification settings - Fork 7
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
Remove unnecessary curried types #52
Labels
types
Refine/fix types
Comments
singla-shivam
added a commit
that referenced
this issue
Jun 19, 2022
singla-shivam
added a commit
that referenced
this issue
Jun 19, 2022
singla-shivam
added a commit
that referenced
this issue
Jun 20, 2022
singla-shivam
added a commit
that referenced
this issue
Jun 21, 2022
singla-shivam
added a commit
that referenced
this issue
Jun 26, 2022
singla-shivam
added a commit
that referenced
this issue
Jun 26, 2022
singla-shivam
added a commit
that referenced
this issue
Jun 26, 2022
singla-shivam
added a commit
that referenced
this issue
Jun 26, 2022
fix: #52 remove unnecessary types
singla-shivam
added a commit
that referenced
this issue
Jun 29, 2022
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There are some functions which has unnecessary curried types
e.g function
add
has following typesHere, add takes two args of same type. Thus, calling
add
likeadd(3)
oradd(3, _)
oradd(_, 3)
are equivalent. So we can remove such types from the definition. So final type will be-The text was updated successfully, but these errors were encountered: