Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:94624 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 59024 invoked from network); 22 Jul 2016 05:52:31 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 22 Jul 2016 05:52:31 -0000 Authentication-Results: pb1.pair.com header.from=php@golemon.com; sender-id=softfail Authentication-Results: pb1.pair.com smtp.mail=php@golemon.com; spf=softfail; sender-id=softfail Received-SPF: softfail (pb1.pair.com: domain golemon.com does not designate 209.85.214.49 as permitted sender) X-PHP-List-Original-Sender: php@golemon.com X-Host-Fingerprint: 209.85.214.49 mail-it0-f49.google.com Received: from [209.85.214.49] ([209.85.214.49:35998] helo=mail-it0-f49.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 74/8E-52781-D94B1975 for ; Fri, 22 Jul 2016 01:52:30 -0400 Received: by mail-it0-f49.google.com with SMTP id f6so29971882ith.1 for ; Thu, 21 Jul 2016 22:52:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=golemon-com.20150623.gappssmtp.com; s=20150623; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc; bh=Z2mIjdmTUoc2eDP4vM4xf4J0PfmP/eo2L/8ZT89P6Jk=; b=1ckIXzXl0wbkzsAKzAoT3AlMpGdGzyeNAne5H/ZTcMZWBxU3DMdY24Un0KhX4SBj3x AimaeXt2ypGKv8i035ekEMJ5NSClPbEx8GUs2HQLGEY8JCGjPDQAMt4iG4rbP1xz9PN+ rxku4UUI8LhickN2ON35Zxw239mKIdBM7k8Os2vfP3wH6r/gB5JnHbQmbrz6g5e8goWx oE8vXaEIwX5CoEINRQGPWFb0FlqLOnNFbStvH1zu3MoGda5lxr9qNNf5yzMEEgqEjTqq mXWoNWtMGBBxitQMQLdqOWD/PTLWr2V6U1/gL0NwyYSOK7AYZmMS++0MtIBhaZGWxQp+ Ic1g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc; bh=Z2mIjdmTUoc2eDP4vM4xf4J0PfmP/eo2L/8ZT89P6Jk=; b=CW9PtxYSexX1/Uwjaqzgqk9xNlRnu/Z0YXqHOp4qMs2Pb3/GFgmyDeCwS8MXDNUELQ 0KqmiT5+IGEQlCtnyVwTy0s52/+SLGvC/J3dLexwDcq37n53MFZUqctwX1opWwqtpHkz +5z//vgiNNn4gYv41wBXFy4TWkfYRNiEVIRvxXL93uAOzjhXRgr3xzqDvclhF2dxnRk2 MHFXZNFNgxJciUlRsUAb8W7LuIkUcUqRTJyLzt6FYlt78jykia/sa0HswldqeX+MIelX w7h7sxKG3dWBbxND3ap1hWmC9BcFiAm/wDwMPPVxyMqixVqC9dSM4ltVNP+ZXFPnb9tP WQTQ== X-Gm-Message-State: AEkoouuFDLSvML4TG0ZsD8NLDgpUWGAOBTGbk9R5jNFYcsNCQGIU+m5ZE+T6OUsrDogcNlC8nKEC8ZDTWaJzTw== X-Received: by 10.36.137.215 with SMTP id s206mr2396499itd.82.1469166747410; Thu, 21 Jul 2016 22:52:27 -0700 (PDT) MIME-Version: 1.0 Sender: php@golemon.com Received: by 10.36.117.201 with HTTP; Thu, 21 Jul 2016 22:52:26 -0700 (PDT) X-Originating-IP: [107.198.91.68] In-Reply-To: <5024e8b2-4a4d-4a12-99f3-a539c9930337@gmail.com> References: <71557808-5718-0406-3df9-830bc2e03006@gmail.com> <5024e8b2-4a4d-4a12-99f3-a539c9930337@gmail.com> Date: Thu, 21 Jul 2016 22:52:26 -0700 X-Google-Sender-Auth: E6anrjsbPPscK2-8gI5KKPp0Xxk Message-ID: To: Rowan Collins Cc: PHP internals Content-Type: text/plain; charset=UTF-8 Subject: Re: [PHP-DEV] Pipe Operator v2 From: pollita@php.net (Sara Golemon) On Thu, Jul 21, 2016 at 2:56 PM, Rowan Collins wrote: > On 21/07/2016 22:28, Sara Golemon wrote: >> >> Are you picturing the return statement returning from the current >> function? Or "returning" from the current pipe chain? >> >> I think you mean the former, in which case I'd ask how that'd better/worse >> than: >> >> return foo() |> bar($$); > > I do indeed mean returning from the current function. I went into more > detail (perhaps too much!) on the previous thread, but the basic premise is > the pipe operator gives you code that reads left to right. Adding an element > where you have to jump back to the beginning of the expression feels like it > defeats that. > 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). 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. -Sara