Skip to main content

in reply to r҉ustic cy͠be̸rpu̵nk🤠🤖

The old-skool syntax:

```
&{$handler}( %{$data->{params}} );
```

is better written as :

```
$handler->( %{$data->{params}} );
```

Which can also be modernized as:

```
$handler->( $data->{params}->%* );
```

in reply to Gene Boggs

@ology also, is there a `->%*` equvalent for `%{ $_ || {} }` yet or are we waiting on ppc0021?
@cypnk

github.com/Perl/PPCs/blob/main…