Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:94648 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 10135 invoked from network); 23 Jul 2016 15:15:13 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 23 Jul 2016 15:15:13 -0000 Authentication-Results: pb1.pair.com smtp.mail=rowan.collins@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=rowan.collins@gmail.com; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 74.125.82.44 as permitted sender) X-PHP-List-Original-Sender: rowan.collins@gmail.com X-Host-Fingerprint: 74.125.82.44 mail-wm0-f44.google.com Received: from [74.125.82.44] ([74.125.82.44:36371] helo=mail-wm0-f44.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id DD/D0-05797-10A83975 for ; Sat, 23 Jul 2016 11:15:13 -0400 Received: by mail-wm0-f44.google.com with SMTP id q128so87581396wma.1 for ; Sat, 23 Jul 2016 08:15:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=subject:to:references:from:message-id:date:user-agent:mime-version :in-reply-to:content-transfer-encoding; bh=qdg+mxXsv8pnjKqXEQpiwxCeOBgK4eaHZBN5kp8cjNQ=; b=OiQ+gxOEpRn2ok4o5dlTd8qX75XdIZ4lLC77Kb1D7BpHrAGWnm56mGsnyrj7FUWw6v yNR4TJ+Jxra1947hbJmQkIQB5uz0abLi+EvOYFdwb1JPgH7jQR/UFUUSSKge5PvVllUr A+xFbXkiMYWBAA6KwmA3lfaLeXvcDbCFRc5I6JWJ3mDkoLi2Fm9bo5OLpz11ncPc/NyP c25H2V7wYDaCiqht2w1OHRAyXUzOwuVEn97DAMTgelJ2wrhCPr50D4WWGtQywnwJn0dq a81SKwgCecDZuoC+fMOtZRrs8bLePMoedXOCbe5EBXhCssb/VN+sRULvcfaA0zEMzS9O 8URw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:subject:to:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-transfer-encoding; bh=qdg+mxXsv8pnjKqXEQpiwxCeOBgK4eaHZBN5kp8cjNQ=; b=OAgQXdqs00xONYkibaIpKgDgB4BfVvfH3w0ZgmJcatZlCOSNLLn5/Hif1J3PkTaQEv jSdrp/F3EUe/Rk1dDBJuIbvgBw8feVVjpVBwiCKmv5tAS0aemJ7c4aGD7ZGXldf91Z88 d6Os/HhFGpyUxoZGPKV0ewu9EToaR1ZgCRJs0mpd2zYoGWbTUqtBUzuPjeNi+yMaP4+X V7kq5BCKZavXCFRiwfLK6h8LhpepqX+pkIZW79NcqDJ0RjzEqXis+A4d/SQOy5Q/90p2 jN2K+tGq9f+oPFsyXxr0eVe0MEr3BoioGZYW5Tym2xR/VGYFQUfuQkZskL7mOGTPAjrE R3jw== X-Gm-Message-State: AEkoouvtYhpRu8p8PgYkaHCUlK+IWFtA/T2rEnr+sjAyWV4hEvM1a0jREwvRGwqmzaedww== X-Received: by 10.28.157.148 with SMTP id g142mr11731651wme.2.1469286910320; Sat, 23 Jul 2016 08:15:10 -0700 (PDT) Received: from [192.168.1.5] ([95.148.161.240]) by smtp.googlemail.com with ESMTPSA id gg10sm6321289wjd.4.2016.07.23.08.15.09 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 23 Jul 2016 08:15:09 -0700 (PDT) To: PHP internals References: <71557808-5718-0406-3df9-830bc2e03006@gmail.com> <5024e8b2-4a4d-4a12-99f3-a539c9930337@gmail.com> Message-ID: Date: Sat, 23 Jul 2016 16:15:09 +0100 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] Pipe Operator v2 From: rowan.collins@gmail.com (Rowan Collins) On 22/07/2016 06:52, Sara Golemon wrote: > Ah! I understand your point now. Indeed, in terms of code-scan, > there's something of a whiplash effect going on. Now I understand the > motivation behind $> assignment and/or using a terminal like `return > $$` at the end. > > Adding in support for some terminals (like return) could make sense, > it's an exception to a rule, but it's a reasonable looking one (at > first glance, anyway). Glad it makes sense. :) I realise "return $$" would have to have some special handling, but it would feel more natural to me. I guess the only concern is what happens when a pipeline has a return terminal and is used in expression context: $foo = bar() |> baz($$) |> return $$; // theoretically translates to this invalid PHP: $foo = return baz(bar()); I'm not sure how easily the compiler would be able to pick up that that's an illegal construction. I was going to say that "yield" would be worth considering at the same time, but presumably that's already legal, because yield can appear as an expression (to receive variables sent into a co-routine). It's a shame neither "echo" nor "print" is useful for getting $$ out to screen and leaving it unchanged (echo doesn't work in expression context at all; print doesn't have a useful return value). > The assign to var at the end however, is something I'd rather handle > with the following: > > foo() |> bar($$) |> $baz = qux($$); > > Which is both legal with the syntax as-is, and entirely readable > without adding an extra operator. Yes, on reflection I think "|> $foo = $$" is probably easier to follow than extra syntax. I quite like the idea of a whole language where data always flows left-to-right, but we're used to that being what assignment looks like. It might be worth coming up with some examples to add to the RFC where $$ is used in an expression other than a function call, because I wasn't entirely sure when I read it if that was even allowed. It might also clear up some of the confusion around this being anything to do with OO. Off the top of my head, how about some maths: $foo * $bar |> 2 ** $$ |> sin($$ + 1) |> $$ / 20 |> $result = $$; Compiles to: $result = sin((2 ** ($foo * $bar)) + 1) / 20; Or: $temp = $foo * $bar; $temp = 2 ** $temp; $temp = sin($temp + 1); $result = $temp / 20; Regards, -- Rowan Collins [IMSoP]