Maybe I missed something but I could not find a method to get all section
values as hash. It could be implemented the following way. It's no magic
but much more comfortable to use. Could you add this method please?
=head2 Values ( $section )
Returns all keys and values in a given section as hash.
=cut
sub Values {
my ($self, $section) = @_;
return unless defined $self and defined $section;
return map { $_ => $self->val($section,$_) } ( $self->Parameters(
$section ) );
}
Thanks and Greetings!
Nobody/Anonymous
None
None
Public