stop using excludes within moose, since it's no longer necessary
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Number / abs.pm
1 package Moose::Meta::Method::Accessor::Native::Number::abs;
2
3 use strict;
4 use warnings;
5
6 use Moose::Role;
7
8 with 'Moose::Meta::Method::Accessor::Native::Writer';
9
10 sub _maximum_arguments { 0 }
11
12 sub _potential_value {
13     my $self = shift;
14     my ($slot_access) = @_;
15
16     return 'abs(' . $slot_access . ')';
17 }
18
19 sub _inline_optimized_set_new_value {
20     my $self = shift;
21     my ($inv, $new, $slot_access) = @_;
22
23     return $slot_access . ' = abs(' . $slot_access . ');';
24 }
25
26 no Moose::Role;
27
28 1;