> Am 24.3.2016 um 18:50 schrieb Nikita Popov <nikita....@gmail.com>: > > Hi internals! > > For consistency, we should add a spaceship assignment operator: > > $a <=>= $b; > // same as > $a = ($a <=> $b); > > Additionally, we should add an is-identical assignment operator: > > $a ==== $b; > // same as > $a = ($a === $b); > > Thank you for taking this proposal under consideration. > > Regards, > Nikita
I see a problem with that … It’d be impossible to make it consistent with is-equal comparison… === is already is-identical comparison. So, no symbol for the is-equal assignment operator left. As long as you don’t have any better suggestion, I’m sorry, but -1 on that. Bob