infix ^fff^

Documentation for infix ^fff^ assembled from the following types:

language documentation Operators

From Operators

(Operators) infix ^fff^

sub infix:<^fff^>(Mu $aMu $b)

Like fff, except it does not return true for matches to either the left or right argument.

my @list = <A B C>;
say $_ if /A/ fff /C/ for @list;   # OUTPUT: «A␤B␤C␤» 
say $_ if /A/ ^fff^ /C/ for @list# OUTPUT: «B␤»

For the non-sed version, see ^ff^.

This operator cannot be overloaded, as it's handled specially by the compiler.