On Mon, Oct 4, 2021 at 2:15 PM Konrad Baumgart wrote:
> > I have spare time this October, so I would happily get into php
> interpreter by developing this.
> Unfortunately my plans to have spare time FAILED and I'm not able to
> contribute in the near future.
>
>
I'm procrastinating writing slide
> I have spare time this October, so I would happily get into php interpreter
> by developing this.
Unfortunately my plans to have spare time FAILED and I'm not able to
contribute in the near future.
> If something like this were to be introduced, I'd happily see it happen with
> anonymous objec
On Mon, Sep 27, 2021 at 11:27 AM Konrad Baumgart wrote:
> Hi everyone,
>
> I'd like to propose 2 syntactic sugars:
> $array = [ => $data]; // the same as $array = ['data' => $data]
> and
> [ => $data] = $array; // the same as ['data' => $data] = $array
>
> My biggest use-case for this would be co
On Mon, Sep 27, 2021 at 11:27 AM Konrad Baumgart wrote:
> I was recently developing with js/ts and I liked the ease of returning
> multiple items from a function as an object, while still preserving
> their name.
>
I recently encountered this as well in Typescript. I believe the syntax is
someth
Hi everyone,
I'd like to propose 2 syntactic sugars:
$array = [ => $data]; // the same as $array = ['data' => $data]
and
[ => $data] = $array; // the same as ['data' => $data] = $array
My biggest use-case for this would be conveniently returning multiple
things from a function, like:
function ge