
Class::Param::Tie - Provides a tied hash interface

$param = Class::Param::Tie->new( $param );
@names = keys %$param;
$value = $param->{$name};
@names = $param->names;
$value = $param->get($name);

Provides a tied hash interface.

Constructor. Takes one argument, a instance of Class::Param::Base.
The rest of the API is the same as Class::Param.


Christian Hansen chansen@cpan.org

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