Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:94614 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 82663 invoked from network); 21 Jul 2016 14:01:29 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 21 Jul 2016 14:01:29 -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 209.85.215.50 as permitted sender) X-PHP-List-Original-Sender: rowan.collins@gmail.com X-Host-Fingerprint: 209.85.215.50 mail-lf0-f50.google.com Received: from [209.85.215.50] ([209.85.215.50:36234] helo=mail-lf0-f50.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 9D/62-52781-8B5D0975 for ; Thu, 21 Jul 2016 10:01:28 -0400 Received: by mail-lf0-f50.google.com with SMTP id g62so62791504lfe.3 for ; Thu, 21 Jul 2016 07:01:28 -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=7Eb+iwGjc3IyxaIrhXDrf6EsTRwxTgea6cbsxOVz8LM=; b=fnzpzcJ03ZV/69AmS3bSim44taxa6Y3o1Tej2w2FIKwF7UIfdQX2RVVlHk0NZkViJe AKu91YeDq2Rp3fw3W8fMiuVFA5LrGZYSahK8LY8J/WVnffmd9JRvn8ls59XcYVSOB1Wo vWF4Rw6wIeLrw+Ab0j9qAPd+MZNcFUzfZ1HQBtiMOmpYkIPsqHrvEOYDXq2CE8/iooOy mwtsxYaaj9vAxFSztwp0G5NOTlgJY59BVQPSHRixof4lniGMa0aKoCnhkERyTV1C+CMk c8euoP7yA1SEBcOzhSPYdT2B/c6G6iUJ4i2emmAMjXuHVojE7er9j5w72kr+oHoAwHmQ DyCw== 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=7Eb+iwGjc3IyxaIrhXDrf6EsTRwxTgea6cbsxOVz8LM=; b=GkLDupi852w8SewB7ukKv22Q8r094TjhUphK/Eo5jEgDJcs8RDpV4iUYQ5bHweik/X 4BST1B8Bt24jTC9xoAUlQy0wKRa1WNsF2rZ3hv/QsvueZjIZAFx8t0frBj3o6AQFrPm5 Y7iZZZDeQURpQ9sI9tx1wTlnyOseFJs3AEd7uCO8GSBF42foblo65ucHr2hQN5bpmyIz SAqJTcgdIlv6k2GK35DzLca2WhHWKcbx7SISStsDQyMredE74imDzjGqgOiAy/2WFTTE q8gk91hYbz2vVCbfPPMLTFtkq50jYuYTvxFgN88NKQKFYLxhl6hEIRB7MrEPCW67CkYv N3eA== X-Gm-Message-State: ALyK8tLH3aVGfQ10MEXIbgI/RL8jsueS+eIs6shR/jmdrAqq0wAdph5YC/Am22DSRZdx4A== X-Received: by 10.46.71.149 with SMTP id u143mr20560133lja.18.1469109685343; Thu, 21 Jul 2016 07:01:25 -0700 (PDT) Received: from [192.168.0.98] ([93.188.182.58]) by smtp.gmail.com with ESMTPSA id h68sm1847534ljh.38.2016.07.21.07.01.24 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 21 Jul 2016 07:01:24 -0700 (PDT) To: internals@lists.php.net References: Message-ID: <71557808-5718-0406-3df9-830bc2e03006@gmail.com> Date: Thu, 21 Jul 2016 14:59:46 +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 00:42, Sara Golemon wrote: > With the branching of 7.1, and after some reflection on the previous > feedback, I'd like to reopen discussion of the Pipe Operator RFC > https://wiki.php.net/rfc/pipe-operator which I had previously put on > hold. I've changed much of the argument wording of the proposal, but > not the substantive feature set. If you still feel it's unworkable, > I'd like to encourage you to respond with what you think would make it > workable (if anything). Thanks. It looks like the examples are all still function calls. Could you clarify what expressions would be acceptable on the right-hand side? In particular, can I assign to a variable at the end of the pipe? foo() |> bar($$) |> $result = $$; As discussed before, I think pipes would be most useful if values could "exit on the right". For which I would also like to be able to do this: foo() |> bar($$) |> return $$; (Or, as discussed, special syntax for one or both of these.) Regards, -- Rowan Collins [IMSoP]