in reply to Re: regex for Err operator.
in thread regex for Err operator.

Hi, Thanks for your reply. The Err operator is a Binary operator in perl6 and it is //. A binary // operator is the defaulting operator. That is: $a // $b is short for: defined($a) ? $a : $b Because this operator is very useful Iam writing a source filter. Thanks, Raga