Why was the spaceship operator <=> chosen to have one equal sign rather than two? Is this seen as inconsistent with one equal sign usually meaning assignment, and two meaning comparison?
| |||
|
show 3 more comments
feedback
|
|
Why would it have two? There's only one in | ||||
|
feedback
|
|
The spaceship operator is a combination of | |||
|
feedback
|
</==/>– ysth Apr 1 '11 at 3:13=is used for assignment, and==for equality because assignment in Perl is a more common action than testing for equality. – Eric Strom Apr 1 '11 at 20:45