infix ≡
Documentation for infix ≡
assembled from the following types:
language documentation Operators
From Operators
(Operators) infix ≡
multi sub infix:<≡>(, --> Bool)
Returns True
if $a
and $b
are identical. Equivalent to (==)
.
say (1, 2, 3) ≡ (1, 3, 2); # OUTPUT: «True»say (1, 2, 3) ≡ (1, 2, 4); # OUTPUT: «False»
≡
is codepoint U+2261 (IDENTICAL TO).