Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:94620 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 25204 invoked from network); 21 Jul 2016 21:28:17 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 21 Jul 2016 21:28:17 -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.52 as permitted sender) X-PHP-List-Original-Sender: php@golemon.com X-Host-Fingerprint: 209.85.214.52 mail-it0-f52.google.com Received: from [209.85.214.52] ([209.85.214.52:37722] helo=mail-it0-f52.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id C5/A9-52781-F6E31975 for ; Thu, 21 Jul 2016 17:28:16 -0400 Received: by mail-it0-f52.google.com with SMTP id f6so30308721ith.0 for ; Thu, 21 Jul 2016 14:28:15 -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=2VOXvl9MjshqpHrenMtTQxMDaukj6ygeDhy1U1+cC3M=; b=UaVDm5n7efievl4cECq0uq3z5K8KLEkhmRCCBK14dez6mGRMQk0AJDjlnB1V9BR9mo EaRZGcxfz4RJ8BJ8xpKIcDjWsRywcW4WaEC/o7IGMLnjlQn+Og1cGrR189w9vLUKNAgD 4vPy38XBQsiXdgTLY1nf5cSWQfCMtSn9skEQDsp9tNVtekD3TWiRt066uVSs0WVxxWu7 Rte/J995ugAaxX57qGheuNMxBk1VgZpIAKkFNQDuL1IOLTXrCk33CZ5+H6wRf4S+2wWt A1GXOar08Thz60NbjE8TodRnpXSkwFH0TB1FrcFknJNMF5dEkG4ADnaB7ILei8c9EMxc zSOQ== 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=2VOXvl9MjshqpHrenMtTQxMDaukj6ygeDhy1U1+cC3M=; b=g86DQOIDMq4KltjxkZ+9P2DONtRUJlz2EZ60CNyKVbqMVd3LAUiGdP7JcOGGhgrWB5 qJwQuJWi7Tq3LB/vWlNot8lXQLpIvrRgtxoAgKFilQIXcXJGyi3nsX8LxzeswAgCnP6y h1+JgwrbwhswaDGkX2RYDr5O9KRWW/x2e8CgMX3fcxk9SN7tfh6q749xR1JcAhH71eTr /TZqjgQr/3yMwTglSLt2aSLD9pMq0V6+wSu9kyYaI1tdCYYZqU/eqA8AF/bKAiNHbvOT l5Wv2XHXXXfxbqL5nrQ4EqeICVDXWwwOhX4zvWADTiQpmmtjOMCqhN/aCMIeSo1/a2R1 ETAQ== X-Gm-Message-State: ALyK8tICXMDlk24T4bEvxRgnXo125Hs1z0WGqwEKohbSh2IcMqV03bbzULS252O99u2n29QJcQ1MeCoLFyfL8w== X-Received: by 10.36.217.68 with SMTP id p65mr59996132itg.9.1469136493443; Thu, 21 Jul 2016 14:28:13 -0700 (PDT) MIME-Version: 1.0 Sender: php@golemon.com Received: by 10.36.117.201 with HTTP; Thu, 21 Jul 2016 14:28:12 -0700 (PDT) X-Originating-IP: [107.198.91.68] In-Reply-To: <71557808-5718-0406-3df9-830bc2e03006@gmail.com> References: <71557808-5718-0406-3df9-830bc2e03006@gmail.com> Date: Thu, 21 Jul 2016 14:28:12 -0700 X-Google-Sender-Auth: TPbnor7h9pOCu5QrgujxM7uth7g Message-ID: To: Rowan Collins Cc: PHP internals Content-Type: text/plain; charset=UTF-8 Subject: Re: [PHP-DEV] Pipe Operator v2 From: pollita@php.net (Sara Golemon) On Thu, Jul 21, 2016 at 6:59 AM, Rowan Collins wrote: > 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? > Any non-terminal expression. > In particular, can I assign to a variable at the end of the pipe? > > foo() |> bar($$) |> $result = $$; > Sure. ($result = $$) is an expression which returns the assigned value, so it's a valid non-terminal. $alsoResult = foo() |> bar($$) |> $result = $$; var_dump($alsoResult === $result); // bool(true) > 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 $$; > Are you picturing the return statement returning from the current function? Or "returning" from the current pipe chain? I think you mean the former, in which case I'd ask how that'd better/worse than: return foo() |> bar($$); > (Or, as discussed, special syntax for one or both of these.) > As above, I don't think special syntax adds anything for either of these cases. -Sara