Skip to content

Commit

Permalink
overload.pm: Add string-specific bitops
Browse files Browse the repository at this point in the history
  • Loading branch information
Father Chrysostomos committed Feb 1, 2015
1 parent b6e8d7f commit cb9052a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/overload.pm
Expand Up @@ -8,8 +8,8 @@ our $VERSION = '1.24';
num_comparison => "< <= > >= == !=",
'3way_comparison' => "<=> cmp",
str_comparison => "lt le gt ge eq ne",
binary => '& &= | |= ^ ^=',
unary => "neg ! ~",
binary => '& &= | |= ^ ^= &. &.= |. |.= ^. ^.=',
unary => "neg ! ~ ~.",
mutators => '++ --',
func => "atan2 cos sin exp abs log sqrt int",
conversion => 'bool "" 0+ qr',
Expand Down Expand Up @@ -361,8 +361,8 @@ hash C<%overload::ops>:
num_comparison => '< <= > >= == !=',
'3way_comparison'=> '<=> cmp',
str_comparison => 'lt le gt ge eq ne',
binary => '& &= | |= ^ ^=',
unary => 'neg ! ~',
binary => '& &= | |= ^ ^= &. &.= |. |.= ^. ^.=',
unary => 'neg ! ~ ~.',
mutators => '++ --',
func => 'atan2 cos sin exp abs log sqrt int',
conversion => 'bool "" 0+ qr',
Expand Down

0 comments on commit cb9052a

Please sign in to comment.