See Original text in context
sub infix:<fff^>(Mu , Mu )
Like fff, except it does not return true for matches to the right argument.
my = <A B C>;say if /A/ fff /C/ for ; # OUTPUT: «ABC»say if /A/ fff^ /C/ for ; # OUTPUT: «AB»
For the non-sed version, see ff^.
This operator cannot be overloaded, as it's handled specially by the compiler.