Skip to content

Instantly share code, notes, and snippets.

@Hugoberry
Last active April 27, 2018 06:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Hugoberry/ef07a284eee3a3f365ae6992e4a2709c to your computer and use it in GitHub Desktop.
Save Hugoberry/ef07a284eee3a3f365ae6992e4a2709c to your computer and use it in GitHub Desktop.
[Power Query] Closures, partial application and cascading parameters
let
addTo = (x) => (y) => x + y,
//make a closure with scope x=5
addToFive = addTo(5),
//becomes addTo(5) => (y) => 5 + y
eight = addToFive(3)
in //becomes addTo(5) => (3) => 5 + 3
eight
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment