rfc:partial_function_application
Differences
This shows you the differences between two versions of the page.
rfc:partial_function_application [2021/06/02 17:26] – Magic methods work again. crell | rfc:partial_function_application [2025/04/03 13:08] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 3: | Line 3: | ||
* Date: 2020-04-22 | * Date: 2020-04-22 | ||
* Author: Paul Crovella, Levi Morrison, Joe Watkins, Larry Garfield | * Author: Paul Crovella, Levi Morrison, Joe Watkins, Larry Garfield | ||
- | * Status: | + | * Status: |
* First Published at: https:// | * First Published at: https:// | ||
Line 127: | Line 127: | ||
// Ex 10 | // Ex 10 | ||
- | $c = stuff(?, ?, f: 3.5, ..., p: $point); | + | $c = stuff(?, ?, ..., f: 3.5, p: $point); |
$c = fn(int $i, string $s, int $m = 0) => stuff($i, $s, 3.5, $point, $m); | $c = fn(int $i, string $s, int $m = 0) => stuff($i, $s, 3.5, $point, $m); | ||
Line 133: | Line 133: | ||
// Prefill all params, making a " | // Prefill all params, making a " | ||
$c = stuff(1, ' | $c = stuff(1, ' | ||
- | $c = fn(...$args) => stuff(1, 'foo', 3.4, $point, 5, ...$args); | + | $c = fn(...$args) => stuff(1, 'hi', 3.4, $point, 5, ...$args); |
// Ex 12 | // Ex 12 | ||
Line 189: | Line 189: | ||
function stuff(int $i, string $s, float $f, Point $p, int $m = 0) {} | function stuff(int $i, string $s, float $f, Point $p, int $m = 0) {} | ||
- | // Insufficient parameters. | + | // throws Error(not enough arguments and or place holders for application of stuff) |
$c = stuff(?); | $c = stuff(?); | ||
- | // Parameter | + | // throws Error(too many arguments and or place holders for application of stuff) |
+ | $c = stuff(?, ?, ?, ?, ?, ?); | ||
+ | |||
+ | // throws Error(Named parameter | ||
$c = stuff(?, ?, 3.5, $point, i: 5); | $c = stuff(?, ?, 3.5, $point, i: 5); | ||
- | // Positional argument used after named argument. | + | // Fatal error: Named arguments must come after all place holders |
$c = stuff(i:1, ?, ?, ?, ?); | $c = stuff(i:1, ?, ?, ?, ?); | ||
// Cannot use placeholder on named arguments. | // Cannot use placeholder on named arguments. | ||
+ | // Parse error: syntax error, unexpected token "?" | ||
$c = stuff(1, ?, 3.5, p: ?); | $c = stuff(1, ?, 3.5, p: ?); | ||
- | // Cannot use positional placeholder | + | // Fatal error: Named arguments must come after all place holders |
$c = stuff(?, ?, ?, p: $point, ?); | $c = stuff(?, ?, ?, p: $point, ?); | ||
</ | </ | ||
Line 243: | Line 247: | ||
f(1, 2); | f(1, 2); | ||
- | $f = f(?); | + | $f = f(?, ?); |
$f(1, 2); | $f(1, 2); | ||
Line 271: | Line 275: | ||
For example: | For example: | ||
- | < | + | < |
function f(...$args) { | function f(...$args) { | ||
print_r($args); | print_r($args); | ||
Line 314: | Line 318: | ||
$arrow = fn($who) => speak($who, getArg()); | $arrow = fn($who) => speak($who, getArg()); | ||
- | print "JOe\n"; | + | print "Joe\n"; |
$arrow(' | $arrow(' | ||
Line 356: | Line 360: | ||
]; | ]; | ||
- | // $points | + | // $people |
- | $points | + | $people |
</ | </ | ||
Line 363: | Line 367: | ||
- | Magic methods '' | + | Magic methods '' |
- | Named arguments are also supported, the same as with '' | + | Named arguments are also supported, the same as with '' |
For example: | For example: | ||
Line 393: | Line 397: | ||
$m(a: 1, b: 2); | $m(a: 1, b: 2); | ||
+ | /* Prints: | ||
Foo::method | Foo::method | ||
Array | Array | ||
Line 402: | Line 407: | ||
</ | </ | ||
- | The '' | + | The '' |
===== Common use cases ===== | ===== Common use cases ===== | ||
Line 426: | Line 431: | ||
// $p is now a partially applied function with the same 4 arguments | // $p is now a partially applied function with the same 4 arguments | ||
// as Foo::bar. Effectively there is no difference between now calling | // as Foo::bar. Effectively there is no difference between now calling | ||
- | // $p(1, 2, 3, 4) and $foo->bar(1, 2, 3, 4). | + | // $p(1, 2, 3, 4) and $f->bar(1, 2, 3, 4). |
</ | </ | ||
Line 512: | Line 517: | ||
===== Syntax choices ===== | ===== Syntax choices ===== | ||
- | The ''?'' | + | The ''?'' |
The '' | The '' | ||
+ | |||
+ | A few reviewers have suggested '' | ||
===== Excluded functionality ===== | ===== Excluded functionality ===== | ||
Line 546: | Line 553: | ||
None. | None. | ||
+ | |||
+ | ===== Proposed Voting Choices ===== | ||
+ | |||
+ | As per the voting RFC a yes/no vote with a 2/3 majority is needed for this proposal to be accepted. | ||
+ | |||
+ | The vote was opened on 16 June 2021 and closes 30 June 2021. | ||
+ | |||
+ | <doodle title=" | ||
+ | * Yes | ||
+ | * No | ||
+ | </ | ||
===== Implementation ===== | ===== Implementation ===== |
rfc/partial_function_application.1622654796.txt.gz · Last modified: 2025/04/03 13:08 (external edit)