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

NAME

MouseX::Types::Moose - MouseX::Types::Mouse plus drop-in compatibility with Any::Moose

SYNOPSIS

package Foo;
use Any::Moose '::Types::Moose' => [qw( Int ArrayRef )];
has name => (
is => 'rw',
isa => Str;
);
has ids => (
is => 'rw',
isa => ArrayRef[Int],
);
1;

SEE ALSO

MouseX::Types::Mouse