Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:94605 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 30413 invoked from network); 21 Jul 2016 04:37:36 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 21 Jul 2016 04:37:36 -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:38654] helo=mail-it0-f49.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id E8/99-52781-E8150975 for ; Thu, 21 Jul 2016 00:37:35 -0400 Received: by mail-it0-f49.google.com with SMTP id j124so7224389ith.1 for ; Wed, 20 Jul 2016 21:37:34 -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=9M8oGWatWlRlucToembFrH7saFchZkdo1hgI+1lDs/M=; b=vt1JWxYLV1b7wRSA/z6c/Q5jkJBojiueYq0wiDmCIXgbt5XkwvQGb5Y+VsnK7l5f2R R4i46ah3r9MC858wQBrWCpyaa2lbBNmffnZ/4Z2DUT7jNCG/Rfm9rYcCsXgb3l8+i0K1 rVDaecCSP1tVDzCCcXk8c+cMjVm9lGCIie4aG0ZrwIhZAFxeLvdxntFM7ljzNiwgWnNd BTmfsLlodUydDcZYA8d34ew2u0lcKmFA8Wck4NxfiR9Oa4PGO6t+W5grJPRjDzfs0wds cDNHa6eV0RUNrmyhEHhqG8ta//zd6I8i+eQNPTB0ttj5IkuYmuFoxW+eKrx1mII6zhvP a51g== 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=9M8oGWatWlRlucToembFrH7saFchZkdo1hgI+1lDs/M=; b=av4SMSPIMRTf7JvvOqO2fMfGKATJxu82ns18X1D0bkP4ojU3ZagbthqPQS98wSUGKB MPzuScEv383X6mlNDy0uLx5vWHh6sxPp4ry6sPTg1RmPYinyZay+6XBkhVzJviMJcViU bulFpuyblccTaBdwpsqY7SkhirW3cp4L1U2UNT7K0APBNMLfVyvMOpgcmeumRloWxmmp Xmkw5yqMLQosFvU1Or5ZIV/hS8acjm+VP/NxWfdlY+7i7aa4HPiHpcsV+6qdH4qBzZ2r lQtj8xCDVNfInT9d8QS6OF4wqjc1rqAzC8xn4AqonRuEmM0vxnwTTy3XFe1Wy5WbQl5I hW4A== X-Gm-Message-State: ALyK8tJXm8SMy9WjGb0oTdacVk6YyOoyVtorkEwgkhRDrWp1D6BUKm3K5zqWsC1ow41MgXQMf27glyu9kdeV4g== X-Received: by 10.36.228.200 with SMTP id o191mr13307724ith.9.1469075852578; Wed, 20 Jul 2016 21:37:32 -0700 (PDT) MIME-Version: 1.0 Sender: php@golemon.com Received: by 10.36.117.201 with HTTP; Wed, 20 Jul 2016 21:37:31 -0700 (PDT) X-Originating-IP: [107.198.91.68] In-Reply-To: <5786dd74-8a32-eb16-aec1-77b12d5af1c1@garfieldtech.com> References: <5786dd74-8a32-eb16-aec1-77b12d5af1c1@garfieldtech.com> Date: Wed, 20 Jul 2016 21:37:31 -0700 X-Google-Sender-Auth: w0qpuPR6mjewh-rayf-Yb_TnCmo Message-ID: To: Larry Garfield Cc: PHP internals Content-Type: text/plain; charset=UTF-8 Subject: Re: [PHP-DEV] Pipe Operator v2 From: pollita@php.net (Sara Golemon) On Wed, Jul 20, 2016 at 8:50 PM, Larry Garfield wrote: > I am still generally in favor of this proposal. Especially when dealing > with nested array functions this operator would be a big boon to > readability. > That's honestly my 90% use-case as well. array_merge and array_filter in particular. > However, the introduction discusses fluent chained methods of objects, and > states " This RFC aims to improve code readability by bringing fluent > expressions to functional and OOP libraries not originally designed for the > task." The examples, however, all seem to be centered around procedural > calls. (A static method call is the same thing as a procedural function > call in this respect.) When dealing with methods on an object, it seems it > wouldn't offer much. > In this context, I'd argue instance method calls aren't much different from static method calls either, but I wanted to avoid too many abstract/contrived examples. I suppose one might do something like: return $this->loadConfig() |> $arg->useConfig($$) |> $this->loadUser($$) |> array_merge($$, $this->userDefaults); But the PSR7 example is already contrived as it is. > This other recent discussion/proposal for a "Cascade" operator seems like it > would handle the OOP/method case much better: > > http://news.php.net/php.internals/94466 > > Note: I am not suggesting one is a substitute for the other; rather, that > they are complementary by addressing different parts of the problem space, > and the Pipe RFC should likely not emphasize OOP usage potential as I see > not a great deal there. I am still in favor of it, but let's not over-state > its use cases. > Fair enough. They certainly complement one another and I wouldn't argue either is a one-job-fits-all solution. I wasn't trying to emphasize OOP usage so much as include it as applicable. I think we might actually be agreeing in principle even if we're diverging in our word choices. :) > PS: I am very disappointed that you chose to name the $$ token > T_PIPE_VARIABLE and not T_BLINGBLING. > I leave the silly token names to Ze'ev/Andi (T_PAAMAYIM_NEKUDOTAYIM) and Davey (T_SPACESHIP). I am nothing if not entirely serious and professional. ;p -Sara P.S. - I'm totes going to make that a secondary voting choice now. Name the token, 50% majority wins.