in reply to Re: Link methods to hash values
in thread Link methods to hash values

   return undef if ! exists $self->{$param};

That's more correct (and, in my opinion, readable) as:

   return unless exists $self->{$param};

Beware of undef in list context.