Perl 6 seems to have an explosion of equality operators. What is =:=? What's the difference between "leg" and "cmp"? Or "eqv" and ===?
Does anyone have a good summary?
|
7
|
Perl 6 seems to have an explosion of equality operators. What is =:=? What's the difference between "leg" and "cmp"? Or "eqv" and ===? Does anyone have a good summary?
|
|||
|
|
As for the others:
Finally |
|||
|
|
|
From reddit today: |
||||||||
|
|
|
Does the summary in Synopsis 3: Comparison semantics do what you want, or were you already reading that? Feather's version of the synopses links to the test files where those features are used, so you can see examples of their use and their current test state. Perl 6's comparison operators are much more suited to a dynamic language and all of the things going on. Instead of just comparing strings or numbers (or turning things into strings or numbers), now you can test things precisely with an operator that does what you want. You can test the value, the container, the type, and so on. In one of the comments, you ask about The If you still have questions on the other operators, let's break them down into separate questions. :) |
|||
|
|
...is also a valid operator? – Brad Gilbert Oct 18 '08 at 16:49