MooseX::Method::Signatures MooseX::Method::Signatures - safety types in Perl #1

What is MooseX::Method::Signatures?

method foo (             $affe) # no type checking
method bar (Animal       $affe) # $affe->isa('Animal')
method baz (Animal|Human $affe) # $affe->isa('Animal') || $affe->isa('Human')
continued...
Copyright © 2006 Catalyst IT (NZ) Ltd