Provided by: libmousex-types-perl_0.06-1_all bug

NAME

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

SYNOPSIS

         package Foo;
         use Any::Moose;
         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