Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Update Angular.js #4239

Closed
wants to merge 1 commit into from
Closed

Update Angular.js #4239

wants to merge 1 commit into from

Conversation

jhanink
Copy link
Contributor

@jhanink jhanink commented Oct 2, 2013

the bind function reflects the definition of "partial application", which reduces a function's arity rather than transforming a function with n args into a chain of n functions, each having a single arg.

curry :
f(x,y,z) -> f(x)(y)(z)

partial application :
f(x,y,z) -> f(x)(y,z)

the bind function reflects the definition of "partial application", which reduces a function's arity rather than transforming a function with n args into a chain of n functions, each having a single arg.

curry :
f(x,y,z) -> f(x)(y)(z)

partial application :
f(x,y,z) -> f(x)(y,z)
@mary-poppins
Copy link

Thanks for the PR!

  • Contributor signed CLA now or in the past
    • If you just signed, leave a comment here with your real name
  • PR's commit messages follow the commit message format

If you need to make changes to your pull request, you can update the commit with git commit --amend.
Then, update the pull request with git push -f.

Thanks again for your help!

@jhanink
Copy link
Contributor Author

jhanink commented Oct 2, 2013

signed CLA as Joe Hanink

@petebacondarwin
Copy link
Contributor

Modified the link to hit the section that compares currying with partial application.
Thanks

petebacondarwin pushed a commit that referenced this pull request Oct 3, 2013
The `angular.bind` function reflects the definition of "partial application", which
reduces a function's arity rather than transforming a function with n args into a
chain of n functions, each having a single arg.

curry : f(x,y,z) -> f(x)(y)(z)
partial application : f(x,y,z) -> f(x)(y,z)

Closes #4239
jamesdaily pushed a commit to jamesdaily/angular.js that referenced this pull request Jan 27, 2014
The `angular.bind` function reflects the definition of "partial application", which
reduces a function's arity rather than transforming a function with n args into a
chain of n functions, each having a single arg.

curry : f(x,y,z) -> f(x)(y)(z)
partial application : f(x,y,z) -> f(x)(y,z)

Closes angular#4239
jamesdaily pushed a commit to jamesdaily/angular.js that referenced this pull request Jan 27, 2014
The `angular.bind` function reflects the definition of "partial application", which
reduces a function's arity rather than transforming a function with n args into a
chain of n functions, each having a single arg.

curry : f(x,y,z) -> f(x)(y)(z)
partial application : f(x,y,z) -> f(x)(y,z)

Closes angular#4239
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants