Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:94621 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 27808 invoked from network); 21 Jul 2016 21:57:00 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 21 Jul 2016 21:57:00 -0000 Authentication-Results: pb1.pair.com header.from=rowan.collins@gmail.com; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=rowan.collins@gmail.com; spf=pass; 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:35446] helo=mail-wm0-f44.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id E6/1A-52781-B2541975 for ; Thu, 21 Jul 2016 17:56:59 -0400 Received: by mail-wm0-f44.google.com with SMTP id f65so36147995wmi.0 for ; Thu, 21 Jul 2016 14:56:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=subject:references:to:from:message-id:date:user-agent:mime-version :in-reply-to:content-transfer-encoding; bh=VhZQ5e4PbfQaYQqxBqgz6xlTuM7f0+cfffFB4iDHgOY=; b=i7D4IYvl16SbRliFaY1d13OBrzak5ZlTLLmvmRk9fk0+OEuqIJjLKh99Udw6h8gufQ OoDgHtJzbed4ml2qnhhYTMXMpz3060TbSvub3FFH4FF/1YNEtY+jO2WZssJ++7SD6Xbi M504g1jHjwSB39dF+HC+T5IXRkBTfK/+JKEHRTUvW5vBE1srYZSzDidftmw6EP5S8/MT glsT9RhEW7D1teOJyHQgcl8x/UwlDR5pAZSdDvwYd5+9QOQXppmfUredYZrM/vhvCiv+ /3HKdU7NRxPJQUGJ/4rdtv+m7anyHs8NEOEu7Yiixihm4Q9sbaN0ydZESQgYWUErM5al Zg7A== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:subject:references:to:from:message-id:date :user-agent:mime-version:in-reply-to:content-transfer-encoding; bh=VhZQ5e4PbfQaYQqxBqgz6xlTuM7f0+cfffFB4iDHgOY=; b=AxBIi5GK+7RCd6tnyh2XpeIxpjoXbN/wbQYGEo+BVtOlPjPLktZO0JE/WTx8NU0xFS Xb27DB+QmoUThnj9lerhs6I1Yh/MTi4/EL8fAffwoGltByI6hFwTrZnN1Pd5he3GfM/P OgJ4KKHJdWtnwSwJ8WTgAQ8q9WPuo1PILtZAof9AKJh/HVX5Wa/x96ldGmaa1JwmiWXA jFMxw3tqdNmY9wuk1mYgE5X/lFK7CVIFcm+rz7e2uRnVB6gi6h7Ty/oaV4aYvLvNYCmg xlOGRKunFm6/2FJuSbsB3OSjUNWL0Gdn/WbhfPJhIM3obydHexrF7HdAy9dvNfMlvlnH Ov0Q== X-Gm-Message-State: ALyK8tKHLiK4jF4yiEoF2i5b02CSeTDcaSvwnFzVMQsyIeOfZppqDqbH/Xg3FUTODxWstw== X-Received: by 10.28.216.75 with SMTP id p72mr21949932wmg.67.1469138216363; Thu, 21 Jul 2016 14:56:56 -0700 (PDT) Received: from [192.168.1.5] ([95.148.161.240]) by smtp.googlemail.com with ESMTPSA id x203sm7543991wmg.0.2016.07.21.14.56.55 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 21 Jul 2016 14:56:55 -0700 (PDT) References: <71557808-5718-0406-3df9-830bc2e03006@gmail.com> To: PHP internals Message-ID: <5024e8b2-4a4d-4a12-99f3-a539c9930337@gmail.com> Date: Thu, 21 Jul 2016 22:56:45 +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 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. You picked an example with a very short pipeline, and the "return" is fairly obvious; but then "return bar(foo());" is not a great candidate for using the operator in the first place. Take a longer example: return loadConfig() |> buildDic($$) |> getApp($$) |> getRouter($$) |> getDispatcher($$, $request) |> dispatchBusinessLogic($$, $request, new Response()) |> renderResponse($$) |> buildPsr7Response($$) |> emit($$); If you read through that pipeline, you get down to emit($$), and then have to scan back up to figure out where result of that is going to end up. Compare: loadConfig() |> buildDic($$) |> getApp($$) |> getRouter($$) |> getDispatcher($$, $request) |> dispatchBusinessLogic($$, $request, new Response()) |> renderResponse($$) |> buildPsr7Response($$) |> emit($$) |> return $$; Here you can read through all the steps in order, right up to the last action, which is returning the resulting value. Even the name "pipe" is suggesting that something goes in one end, and comes out the other, so having the output pop out next to the input just feels weird. Regards, -- Rowan Collins [IMSoP]