Documentation for infix β
assembled from the following pages:
Language documentation: Operators Β§
From Operators
(Operators) infix β Β§
multi sub infix:<β>(, --> Bool)
Returns True
if $a
is not an element of $b
. Equivalent to !(elem)
.
say 4 β (1, 2, 3); # OUTPUT: Β«Trueβ€Β» say 2 !(elem) (1, 2, 3); # OUTPUT: Β«Falseβ€Β»
Language documentation: Sets, bags, and mixes Β§
(Sets, bags, and mixes) infix β Β§
Returns True
if $a
is not an element of $b
, else False
. More information, Wikipedia definition.