Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:94659 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 40390 invoked from network); 23 Jul 2016 20:49:52 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 23 Jul 2016 20:49:52 -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.223.182 as permitted sender) X-PHP-List-Original-Sender: php@golemon.com X-Host-Fingerprint: 209.85.223.182 mail-io0-f182.google.com Received: from [209.85.223.182] ([209.85.223.182:35608] helo=mail-io0-f182.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 49/E5-05797-F68D3975 for ; Sat, 23 Jul 2016 16:49:51 -0400 Received: by mail-io0-f182.google.com with SMTP id m101so132529200ioi.2 for ; Sat, 23 Jul 2016 13:49:51 -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=1Dq75+FWpLHglWx+/DyealDxgnoYhyvYBc1OlEI0zy0=; b=TIPKq15k7kESyilizyeqKjYvRWbW+PTPK4jRx3QclfIYEfugJwzCfofZTVlGqMPKQc B9fFKP7zPxbJiQjksHdPnEly7cQxQeitO6xMzL7HevA1HpE+lYAK4SX9D018qolHDFEM QtEXiyhZm99l6rdwk0s6+j3ARWVUCyWmm3OhEzvzHrdYOFTBSz/HcKpBxHTUQl5J4cRz EIawKf0ygLz5x2LaEpJcGNveIISBPoxwIqoEIcgXOqK/oyvDB9JPHSI7/evBnbE3ud4U +ibQph3XLOt51kXPDPMRYVPP31VIRw0sAZCxdJLEl8F0easkn8kaZZri/ejvQETydnhZ SXrA== 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=1Dq75+FWpLHglWx+/DyealDxgnoYhyvYBc1OlEI0zy0=; b=ftQQuilb/v3/zHV6M24RFcLALIrZzKCpneMZtILnXUQqRglK+A+NP60rz+LZYzPcNx j7pXOVbzPqJ1o2dTAEhgOlXqTX0XbIUS7ncmdqWOu+sRCC8DqaKVUGRBmhGNp6SdX46F 7guhxw4E7NNPHAaZIwHcayhGFs5Jbb3NqhUTQAeKdTTQd6KOxE8/vr1SrZApvleNcbLS kaSquCrXJMC4cfOKg4OcVFmKVdljV908QLupB2cBCiSy6jnBpzNsK9qcYtAh1BuqgH0a 8eieigR0OTs64HZ85vINmDyEZHadPuMlSQJuQwVukcZqrbwAuh5LEYY7QfH7LUnY5Skf 39MQ== X-Gm-Message-State: AEkoouv/uqGRJ97LP1Cb6H2hxo8s5xGeFu940i/QRSmdiMEzH4n8VWVqi0ISRX8IvXs3vhKSLfCtM5+ljM5v0g== X-Received: by 10.107.4.198 with SMTP id 189mr13818663ioe.143.1469306988686; Sat, 23 Jul 2016 13:49:48 -0700 (PDT) MIME-Version: 1.0 Sender: php@golemon.com Received: by 10.36.117.201 with HTTP; Sat, 23 Jul 2016 13:49:47 -0700 (PDT) X-Originating-IP: [107.198.91.68] In-Reply-To: References: <71557808-5718-0406-3df9-830bc2e03006@gmail.com> <5024e8b2-4a4d-4a12-99f3-a539c9930337@gmail.com> Date: Sat, 23 Jul 2016 13:49:47 -0700 X-Google-Sender-Auth: C8A1nimJJLVY6G6YsRNmQSKBZCY 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 Sat, Jul 23, 2016 at 8:15 AM, Rowan Collins wrote: > Glad it makes sense. :) I realise "return $$" would have to have some > special handling, but it would feel more natural to me. I guess the only > concern is what happens when a pipeline has a return terminal and is used in > expression context: > > $foo = bar() |> baz($$) |> return $$; > // theoretically translates to this invalid PHP: > $foo = return baz(bar()); > > I'm not sure how easily the compiler would be able to pick up that that's an > illegal construction. > Right, which is where I'm hesitant to go down that road. > I was going to say that "yield" would be worth considering at the same time, > but presumably that's already legal, because yield can appear as an > expression (to receive variables sent into a co-routine). > Yep. Perfectly valid as-is, so a non-issue. > It's a shame neither "echo" nor "print" is useful for getting $$ out to > screen and leaving it unchanged (echo doesn't work in expression context at > all; print doesn't have a useful return value). > Yeah, those pegs really don't fit into this hole... > It might be worth coming up with some examples to add to the RFC where $$ is > used in an expression other than a function call, because I wasn't entirely > sure when I read it if that was even allowed. It might also clear up some of > the confusion around this being anything to do with OO. > > Off the top of my head, how about some maths: > > $foo * $bar > |> 2 ** $$ > |> sin($$ + 1) > |> $$ / 20 > |> $result = $$; > > Compiles to: > > $result = sin((2 ** ($foo * $bar)) + 1) / 20; > > Or: > > $temp = $foo * $bar; > $temp = 2 ** $temp; > $temp = sin($temp + 1); > $result = $temp / 20; > Fair point, I took those as a given, but they should be added. (And yes, they're valid). -Sara