Skip to content

Instantly share code, notes, and snippets.

@Hugoberry
Last active October 14, 2017 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Hugoberry/3d9d0b13487a5b3d9734c538043c2663 to your computer and use it in GitHub Desktop.
Save Hugoberry/3d9d0b13487a5b3d9734c538043c2663 to your computer and use it in GitHub Desktop.
[Power Query] Closures, partial application and cascading parameters
let
//overwrite function type for _fn_ with a parameter list limited to x AND pass it into the scope of _fn_
fnCopy = (x) => setParameters(fn(x),{1..x})
in //wrap the previous overwrite in another function call with allowed parameters {1..9}
setParameters(fnCopy,{1..9})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment