Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:97976 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 22957 invoked from network); 26 Jan 2017 21:22:52 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 26 Jan 2017 21:22:52 -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.67 as permitted sender) X-PHP-List-Original-Sender: morrison.levi@gmail.com X-Host-Fingerprint: 209.85.215.67 mail-lf0-f67.google.com Received: from [209.85.215.67] ([209.85.215.67:35629] helo=mail-lf0-f67.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 7B/F2-28703-9A86A885 for ; Thu, 26 Jan 2017 16:22:50 -0500 Received: by mail-lf0-f67.google.com with SMTP id v186so24676967lfa.2 for ; Thu, 26 Jan 2017 13:22:49 -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=uCRfDpu9ZXcSM9kvlpg0jBaLPtBo0vWhbDdeLr44fVc=; b=PfzQvnCjfxiR+yPAmDv954ympGmmCbY9wz/mkn06qKELzriPpxDu4LjBgQKXPbH3sX NUTRKwof/eyOuM6OyW7wtULyFdTG7MeFPh0LJWSyma8ywxwiFaRLH8ioG3TCOtXN1VCz empQa6cfbvQWSAZhyUAcQCTM9iQvPrcAfvwxuvpTHSAV5sDEc/znU8zlFiYyM+tpdDfi GtMDTCYOZEMWlO0t28wpiZoPla4/5z26f/auV3/1fJU6ewTfacoJwJW0eaCnHLvMbEXz flwbVtpAMi7GFDzjpkbwXeFG0ynBExTKi/B7piRZTR90TGe+p02OSsb22sqR2BIXN8jS udWg== 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=uCRfDpu9ZXcSM9kvlpg0jBaLPtBo0vWhbDdeLr44fVc=; b=OlwYzVFKqxp5V9BYf1+0VFBasetXPjdU9p7Qbj4RKRmVuRwvhWDuR3brcF77fbjQut rHhTg4rI6QLyQrj7w+3O/rJjnud7qGCXiltUngck4sE4+QMVhhVsqjG075bTZ+OHaPT6 cs2eLSm/5Op95L5UKZsYzkmrncnuZGgrplG6eG+RirB23TyFUrZARQbag7Dd3riX8nWp Od8QM1gDz60m2Yyyd5Bv+ytqR85NPZgXJA8HcxF4bLEtWG303H3ipumwRl+f9dLqgj+R HF1zDoPBUtviqOjMyq4LcQ1/TUVOj0gF98AMEKMp1YtsqzM3RFOVW2FgylpN2HE/JDsS 9EEQ== X-Gm-Message-State: AIkVDXKgBrUo6JPYLX91qQVGQ4+IvBZGRXZhcE/y4td8tm/T4P5vdtbI2pwhRUNdd21yRoMon+1UEkjKAy+71g== X-Received: by 10.25.145.7 with SMTP id t7mr1688933lfd.91.1485465765625; Thu, 26 Jan 2017 13:22:45 -0800 (PST) MIME-Version: 1.0 Sender: morrison.levi@gmail.com Received: by 10.25.151.139 with HTTP; Thu, 26 Jan 2017 13:22:45 -0800 (PST) In-Reply-To: References: <52a7238f-af22-8960-c829-b1d4ba1bbfdc@free.fr> Date: Thu, 26 Jan 2017 14:22:45 -0700 X-Google-Sender-Auth: mmM0MYN96AepWgYIqfdYIsQRFWo Message-ID: To: Rasmus Schultz Cc: Stephen Reay , =?UTF-8?Q?Fran=C3=A7ois_Laupretre?= , Sara Golemon , PHP internals Content-Type: text/plain; charset=UTF-8 Subject: Re: [PHP-DEV] Pipe Operator v2 From: levim@php.net (Levi Morrison) On Thu, Jan 26, 2017 at 1:56 PM, Rasmus Schultz wrote: > Besides, I mean, I'm sure this has occurred to everyone, right? > > https://gist.github.com/mindplay-dk/4ef61fd5c0a35e5aa8fc699febb86487 > > I personally find that this new syntax you're proposing requires a lot of > parsing. > > I mean, whenever you see substr() or array_map() etc. you're intuitively > expecting the first argument to be the first argument, right? Now you have > to backtrack through other lines and figure out the context, or try to spot > the $$ and count arguments to figure out which is which. I didn't follow this. Here is the example from your gist written with either Sara's or my proposal: $output = $input |> array_filter($$, function($n) { return $n % 2 == 0; }) |> array_map(function($n) { return $n ** 2; }, $$) |> array_reduce($$, function($x, $y) { return $x + $y; }) ; Maybe you can explain it a bit more with this code?