in reply to Re: Re: Re: RFC - inplace upgrade for Tie::SortHash
in thread RFC - inplace upgrade for Tie::SortHash
Is equivalent to:defined $self->[ARRAY][$index] ? $self->[ARRAY][$index] : undef;
Cheers - L~Rif (defined $self->[ARRAY][$index]) { return $self->[ARRAY][$index]; } else { return undef; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Re: RFC - inplace upgrade for Tie::SortHash
by demerphq (Chancellor) on Sep 05, 2003 at 22:26 UTC | |
by Limbic~Region (Chancellor) on Sep 05, 2003 at 22:38 UTC |