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


NAME

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


SYNOPSIS

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


DESCRIPTION

Provides a tied hash interface.


METHODS

new

Constructor. Takes one argument, a instance of the Class::Param::Base manpage.

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


SEE ASLO

the Class::Param manpage.


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.