Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:97882 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 65116 invoked from network); 19 Jan 2017 21:53:43 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 19 Jan 2017 21:53:43 -0000 Authentication-Results: pb1.pair.com smtp.mail=morrison.levi@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=morrison.levi@gmail.com; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.215.66 as permitted sender) X-PHP-List-Original-Sender: morrison.levi@gmail.com X-Host-Fingerprint: 209.85.215.66 mail-lf0-f66.google.com Received: from [209.85.215.66] ([209.85.215.66:34652] helo=mail-lf0-f66.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 7B/9C-00729-66531885 for ; Thu, 19 Jan 2017 16:53:43 -0500 Received: by mail-lf0-f66.google.com with SMTP id q89so6774345lfi.1 for ; Thu, 19 Jan 2017 13:53:42 -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:content-transfer-encoding; bh=rgk6nW9CsDqV8iR519tDfnKWuUbyZBnFSb6E6/ocWzs=; b=lMZNAum6SCoMMKGZ1B5lt+X5fwsPED5NbdDXE3Gsx2SUWImV7lJrD0b42uXc1MViBz zP7DS9jzRtN8SbhpgyUDD7BTy2eOYoAuX8lRExSf6auDVULT1CpwIcEkPmxJuPzxIySP Z46EU11JnoO43mHVDcVAwZWpvucO1GGzmZ9BERm7vCfHqHugSJHhIhn6dQGHLNiU7tDx /fmU/stX5jxlqcRkGt2eJb6eHBT4jcw3mZp0YnEKyNkfR0jdIRhEneUdVHzWKZfnQ7Mz C4kfhgKwx6Oxkt2qyR0ck5+H/Q/I65jY4e/5CPGYzOc7T23dIw+X67lnNKQ3cm5VLAW5 cTXA== 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:content-transfer-encoding; bh=rgk6nW9CsDqV8iR519tDfnKWuUbyZBnFSb6E6/ocWzs=; b=BQF20iTfRascLF0pEtxvlrIvT8DB7qWlExEWLl9u3gSKvuXYya+QbQyfiOcAn5uQNQ mLGcJa83bY2mlxyWru9Sp395d5LbowzWGC9QKBp8F2vY6DOBG2QSgYoV4D51JCFPMN9N uhPaLs2JPPELlGCwHJ7ZQcRdGFP+zA1kICRGRjgY8gMZyK40OGGGhKFVPm9yhFEzonkC aK41lwe1p8in5CStp5xfMoy3hYtIz1j+ws5k8RUkAQc27Yrwn9cd8/FQoFNjsRK2nFpK g/sF/HTjFahGfLLVO/s4+nsG+4V8RKLleK+Zg+NxSlGZ/Ql9S55MYm35ITcC1idQl3z0 SC3g== X-Gm-Message-State: AIkVDXLP8QmV1gArCtqljVgvwGQdKx0PCJraGF6ZM/CVqITPpR7DwzRMCuztqorbKwMFpxhFlN6RaE8jLR+8Yg== X-Received: by 10.46.14.26 with SMTP id 26mr1397652ljo.59.1484862820107; Thu, 19 Jan 2017 13:53:40 -0800 (PST) MIME-Version: 1.0 Sender: morrison.levi@gmail.com Received: by 10.25.151.139 with HTTP; Thu, 19 Jan 2017 13:53:39 -0800 (PST) In-Reply-To: References: Date: Thu, 19 Jan 2017 14:53:39 -0700 X-Google-Sender-Auth: j43_KNQeMocvrmISvpUeMdEOMjk Message-ID: To: =?UTF-8?Q?Fran=C3=A7ois_Laupretre?= Cc: Sara Golemon , PHP internals Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [PHP-DEV] Pipe Operator v2 From: levim@php.net (Levi Morrison) On Thu, Jan 19, 2017 at 11:12 AM, Fran=C3=A7ois Laupretre wrote: > Le 19/01/2017 =C3=A0 13:54, Levi Morrison a =C3=A9crit : >> >> 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. > > > May I suggest extending your 3rd rule to : when the right hand side has t= he > form of a function call, insert the result from 1. as first argument of 2= . > This way, right hand side may specify additional arguments If we only had `|>` this may be good but since we are also proposing `$$` then this renders your suggestion unnecessary: $string |> trim($$) Would work just fine with no performance overhead. Additionally, you could write: $input |> array_map($fn, $$) Or: $input |> array_filter($$, $fn) Basically, `$$` gives the flexibility of passing additional arguments and keeps `|>` simple. No need for additional rules for `|>`.