ErrorsCollection

Synthesised documentation from language/setbagmix language/operators

From language/setbagmix

See Original text in context

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

From language/operators

See Original text in context

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␤»