Re: [RFC] Short syntax for anonymous functions

From: Date: Tue, 19 Feb 2013 16:29:04 +0000
Subject: Re: [RFC] Short syntax for anonymous functions
References: 1 2 3 4 5  Groups: php.internals 
Request: Send a blank email to [email protected] to get a copy of this message
($n) => { echo $n; }
($n) use ($m) => { echo $n; }

On Tue, Feb 19, 2013 at 8:11 PM, Levi Morrison <[email protected]>wrote:

> > IF (and I stress if) we add a a shorter anonymous function syntax I'd
> > like it to be geared towards one-liners because that's where the
> > current syntax feels really verbose, especially when you close over
> > other variables:
> >
> >     function ($n) use ($m) { return $m * $n; }
> >
> > Versus one potential option:
> >
> >     ($value) |$m| => $m * $n;
>
> My apologies, this was meant to read:
>
>     ($n) |$m| => $m * $n;
>
> --
> PHP Internals - PHP Runtime Development Mailing List
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>


-- 
Best regards, Andrey


Thread (65 messages)

« previous php.internals (#65964) next »