The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

NAME

MouseX::AttributeHelpers::Number

SYNOPSIS

package Real;
use Mouse;
has 'integer' => (
metaclass => 'Number',
is => 'rw',
isa => 'Int',
default => 5,
provides => {
set => 'set',
add => 'add',
sub => 'sub',
mul => 'mul',
div => 'div',
mod => 'mod',
abs => 'abs',
},
);
package main;
my $real = Real->new;
$real->add(5); # same as $real->integer($real->integer + 5);
$real->sub(2); # same as $real->integer($real->integer - 2);

DESCRIPTION

This provides a simple numeric attribute, which supports most of the basic math operations.

PROVIDERS

set

add

sub

mul

div

mod

abs

METHODS

method_constructors

helper_type

AUTHOR

NAKAGAWA Masaki <masaki@cpan.org>

LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO

MouseX::AttributeHelpers, MouseX::AttributeHelpers::Base