Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:98140 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 72801 invoked from network); 3 Feb 2017 18:53:00 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 3 Feb 2017 18:53:00 -0000 Authentication-Results: pb1.pair.com header.from=morrison.levi@gmail.com; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=morrison.levi@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.215.66 as permitted sender) X-PHP-List-Original-Sender: morrison.levi@gmail.com X-Host-Fingerprint: 209.85.215.66 mail-lf0-f66.google.com Received: from [209.85.215.66] ([209.85.215.66:35908] helo=mail-lf0-f66.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 0E/84-38491-A81D4985 for ; Fri, 03 Feb 2017 13:52:59 -0500 Received: by mail-lf0-f66.google.com with SMTP id h65so2212458lfi.3 for ; Fri, 03 Feb 2017 10:52:58 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc; bh=60Qrfqzo9tou6o197dpA4m+8N0UdYC0ETP67DuyW5mI=; b=ehDN7xUbz/rAGNcC7zZ4Hb8ykgUTIXrOKjqQ81hpGs++TBS7AZ761usQtUixSekez7 v8rnib183MT/2J7XJdcIk6Yc8fjil0fSklqbuEFodbLrpF/GAurcFiCN+qVlMOxhrSII 0nd2RKzS60BNYJrWVJln21gfThAzKqft841WgI/kLb32ixVwpeWX7XY1s2yo3JWPCL2p yW7Ms5zP1KlZYSxjzttPfb1Qa0PanRuIwebICTC5AGc8k6AXhYvs3cTD6+lPiAnHFm5d xvDNK+vGlVBYLhmYZ0qXttpf8zFY2pVpYh9luCv3UQJk6+8Kvo8pvbCgxVbGLCWy4A/s +DcQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc; bh=60Qrfqzo9tou6o197dpA4m+8N0UdYC0ETP67DuyW5mI=; b=btahWL8IqZR5948mJfrU7Yybzwx8oLBu9xfjKz3oOy7w9VDiDWl4bQ19Pl93LGLX4f YJbkl+fhQWaSxk7Rd36thacG0gKBfJLkb8OmXBOZTZQRvxza9B0BLg+5ne+NYVZNe5SS bcnRgybP6HimIWS1ePprn7SeY6v9+G+aQHPrOVWyfiXHUqKw0vYeAE5UJpmOtYPKgBCI hYg+hi/Y7qcrsLn/bTsB/yr4E4zJSnssWICxhO96sx5nynit+Zl6mfglpQXw4bIoHT69 XV+dtYb9RBz/qs0xDdwMdlnvW7Qi8Tuh/6jjv0LYHyImGwB/ul3BeprYlIVFlH2+EejS 0BYw== X-Gm-Message-State: AIkVDXJ5nqc0ko+x2lM8i29QKj+Px7KB8uJuh2CpQ7KioePlBa4YaGq4dlLrCpdVUg8skujZfnMkCCjbGPJPrQ== X-Received: by 10.25.145.7 with SMTP id t7mr5640551lfd.91.1486147975504; Fri, 03 Feb 2017 10:52:55 -0800 (PST) MIME-Version: 1.0 Sender: morrison.levi@gmail.com Received: by 10.25.151.139 with HTTP; Fri, 3 Feb 2017 10:52:54 -0800 (PST) In-Reply-To: References: Date: Fri, 3 Feb 2017 11:52:54 -0700 X-Google-Sender-Auth: Z87bBzuWf4nUME0wkDVTu0S1nTo Message-ID: To: David Rodrigues Cc: internals Content-Type: text/plain; charset=UTF-8 Subject: Re: [PHP-DEV] Re: [RFC][Discuss] Arrow Functions From: levim@php.net (Levi Morrison) On Fri, Feb 3, 2017 at 11:46 AM, David Rodrigues wrote: > Or even, I too don't know why just ($x) => is an issue. There some possible > conflict why that? Yes, this conflicts with existing syntax. The following code snippets are valid today: [($x) => $x + $y] yield ($x) => $x + $y There are other issues as well; this is just the easiest to point out.