On Sun, Jan 07, 2007 at 12:50:32AM -0800, [EMAIL PROTECTED] wrote:

> +    Num       Num       numeric equality        +$_ == $x

I don't think that you need that plus sign         ^
You don't write ~ for the analogous Str/Str case below:

> +    Capture   Num       numeric equality        +$_ == $x
> +    Array     Num       array contains number   any(@$_) == $x
> +    Hash      Num       hash key existence      $_.exists($x)
> +    Byte      Num       numeric equality        +$_ == $x
> +    Any       Num       numeric equality        +$_ == $x
> +
> +    Str       Str       string equality         $_ eq $x
> +    Capture   Str       string equality         ~$_ eq $x
> +    Array     Str       array contains string   any(@$_) eq $x
> +    Hash      Str       hash key existence      $_.exists($x)
> +    Byte      Str       string equality         ~$_ eq $x
> +    Any       Str       string equality         ~$_ eq $x

Nicholas Clark

Reply via email to