From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

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 Class::Param::Base.

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.