X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FAction.pm;h=09f81a8f9f30d8dbf37e7093a77f4c9fc45733fe;hp=87b37fd6f13c192945c14d53039611d1afa72e67;hb=ca5d34dfc295012a749a8454d2b213580e03d55c;hpb=8f6cebb2303a0b0eda9422430f926c3f83c72aed diff --git a/lib/Catalyst/Action.pm b/lib/Catalyst/Action.pm index 87b37fd..09f81a8 100644 --- a/lib/Catalyst/Action.pm +++ b/lib/Catalyst/Action.pm @@ -88,6 +88,19 @@ sub compare { return $a1_args <=> $a2_args; } +sub number_of_args { + my ( $self ) = @_; + return 0 unless exists $self->attributes->{Args}; + return $self->attributes->{Args}[0]; +} + +sub number_of_captures { + my ( $self ) = @_; + + return 0 unless exists $self->attributes->{CaptureArgs}; + return $self->attributes->{CaptureArgs}[0] || 0; +} + __PACKAGE__->meta->make_immutable; 1; @@ -147,6 +160,14 @@ C of an action is always suitable for passing to C. Returns the sub name of this action. +=head2 number_of_args + +Returns the number of args this action expects. This is 0 if the action doesn't take any arguments and undef if it will take any number of arguments. + +=head2 number_of_captures + +Returns the number of captures this action expects for L actions. + =head2 meta Provided by Moose.