infix ≢

Documentation for infix assembled from the following types:

language documentation Sets, bags, and mixes

From Sets, bags, and mixes

(Sets, bags, and mixes) infix ≢

Returns True if $a and $b are not identical, else False. More information, Wikipedia definition.

language documentation Operators

From Operators

(Operators) infix ≢

multi sub infix:<>($a,$b --> Bool:D)

Set inequality operator

Returns True if $a and $b are not identical. Equivalent to !(==).

say (123) ≢ (124); # OUTPUT: «True␤» 
say (123) ≢ (132); # OUTPUT: «False␤»