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