The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Class::Param::Ordered - Class Param Ordered

SYNOPSIS

   $param = Class::Param::Ordered->new;
   $param->param( D => 4 );
   $param->param( C => 3 );
   $param->param( B => 2 );
   $param->param( A => 1 );
   
   @names = $param->names; # ( D, C, B, A )

DESCRIPTION

A param class which remembers insertion order.

METHODS

new

Constructor. Takes no arguments.

The rest of the API is the same as Class::Param.

SEE ASLO

Class::Param.

AUTHOR

Christian Hansen chansen@cpan.org

COPYRIGHT

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