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
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.