Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:97873 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 1091 invoked from network); 19 Jan 2017 12:54:46 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 19 Jan 2017 12:54:46 -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.65 as permitted sender) X-PHP-List-Original-Sender: morrison.levi@gmail.com X-Host-Fingerprint: 209.85.215.65 mail-lf0-f65.google.com Received: from [209.85.215.65] ([209.85.215.65:36588] helo=mail-lf0-f65.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id C8/71-00729-517B0885 for ; Thu, 19 Jan 2017 07:54:46 -0500 Received: by mail-lf0-f65.google.com with SMTP id h65so5281661lfi.3 for ; Thu, 19 Jan 2017 04:54:45 -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=fVz+Rvqp0zRp2cS96yHzA6t1bYNaQI0a8pj8BZnAtS4=; b=Yrja0BOnAqjyH/VTEflo1F4nLD+BA/1+6Xrpi9UBY/B/1teqTpcXALL76oACyg20fh 6Ve/lgNdIdCwuED48nwRNLkPqHFRXYIGaebcSvBgNp2QHzVeIHM3t20uei7JhSVUZb67 4hTVpsWm2jQjTomdGkIJZEW0VUiPDugKnEkhhppaCC9OiA/idXntpZhtzBV15WhjSCEp jPa3nxJuLmOGW/ZzGyB6PN8rkjWFBpmwLOxiP5iyJgGdlN6zQncvdZODFKXfUE0njApq 0LIqRtIi5B4TJ0bV0Ck8XiuavemMWQZR40wRW/TE0pB7B3sTm9iTeYiGfAkQaG8ew+if MTlw== 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=fVz+Rvqp0zRp2cS96yHzA6t1bYNaQI0a8pj8BZnAtS4=; b=Y5Vb2Ckykl7bWH4zfP2RAVx1tBidwYflfSUBBIuzEL+B4RWL9427nWeQKxNAzKsgkL UbwKWy9VnD9ufZc8iwJ1NukHRawdTrleahh61F0lfhq6Onu/NtBfQrSj7CXp4+A43xfO X0aea/E5bBl60+M7OfaxMkCiJcGlIlgDwEqn5qaF+lynHzQwPGNAGsbSYQuz8taFdXNQ ZU24B5RcoibR08tLczswV4drl9kTapxbsAnqBEuVq7FbNhbp0EjJ9/pA7LDBNO3bYrCP sg5ASr/Zm6zJsT6phGzD4ENTS8Zv5UtrqbtYJILcSDF9TnZCZ8HR0KrAf5XYXQbwa0L2 vICw== X-Gm-Message-State: AIkVDXIhTtsQlIM1sm2dQFzTSutm0OyAngUwhpLNrBg6wLs6STHVYcHDaZ/30x+Qsg78x6NtD+igrc+JADiADA== X-Received: by 10.25.16.28 with SMTP id f28mr3168583lfi.89.1484830482608; Thu, 19 Jan 2017 04:54:42 -0800 (PST) MIME-Version: 1.0 Sender: morrison.levi@gmail.com Received: by 10.25.151.139 with HTTP; Thu, 19 Jan 2017 04:54:41 -0800 (PST) In-Reply-To: References: Date: Thu, 19 Jan 2017 05:54:41 -0700 X-Google-Sender-Auth: TdRQNXH7LF_V-H8ckIf1VfFuayY Message-ID: To: Sara Golemon Cc: PHP internals Content-Type: text/plain; charset=UTF-8 Subject: Re: [PHP-DEV] Pipe Operator v2 From: levim@php.net (Levi Morrison) On Wed, Jul 20, 2016 at 5:42 PM, 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. > > -Sara > > -- > PHP Internals - PHP Runtime Development Mailing List > To unsubscribe, visit: http://www.php.net/unsub.php I've talked to you about this RFC off-list, but I figured I should mention it on-list as well. I think we should make `|>` and `$$` two independent operators that work well together (rather than only together). The `|>` symbol would be the piping operator with these semantics: 1. Evaluate the left-hand side. 2. Evaluate the right-hand side. Assert that the result is callable. 3. Pass the result from 1. as the single argument to 2. The `$$` symbol would be the partial function application operator with these semantics: 1. When function application has `$$` as a parameter it becomes a partial application instead. This result of a partial application is a closure. 2. Each non-`$$` parameter is evaluated and then bound at that position. 3. Each `$$` will become a parameter to the closure which will be passed to the inner function call at its original position. 4. Each parameter and closed variable will be done by reference or by value depending on the function being called. The type will also be inherited. 5. The return type of the closure will be inherited from the function it is calling. As an optimization when `|>` and `$$` are used in conjunction there is no need to create closures. This would make the outlined semantics be equivalent to the currently proposed RFC when used together. What do the rest of you think about this instead?