Partial Application Update
Ron Buckton, Microsoft Corporation
Motivations
Proposal
Examples
// “fix” arguments in any position�[1, 2, 3].map(add(?, 1)); // [2, 3, 4]��// preserves `this`�button.onclick = this.onClick(?);��// F#-style pipelines�books � |> filter(?, x => x.category === "programming")� |> map(?, x => x.author)��// templates�const hello = `Hello ${?}!`;�hello("Alice"); // Hello Alice!
What Has Changed
Open Issue - “Garden Path” problem
Open Issue - ‘?’ token
Summary