Hi all,

On Fri, Mar 25, 2016 at 11:25 AM, Pierre Joye <pierre....@gmail.com> wrote:
> On Fri, Mar 25, 2016 at 12:50 AM, Nikita Popov <nikita....@gmail.com> wrote:
>> Hi internals!
>>
>> For consistency, we should add a spaceship assignment operator:
>>
>>     $a <=>= $b;
>>     // same as
>>     $a = ($a <=> $b);
>
> I miserably fail to imagine any use case for this.
>
>> Additionally, we should add an is-identical assignment operator:
>>
>>     $a ==== $b;
>>     // same as
>>     $a = ($a === $b);
>>
>> Thank you for taking this proposal under consideration.
>
> Besides the comment about that one from Sara, I also fail to remotely
> imagine why one would need that.
>
> In short, yes, it is consistent but it is really unreadable, at best.

The same impression.
I suppose there aren't much use cases, are there?

Regards,

--
Yasuo Ohgaki
yohg...@ohgaki.net

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to