in reply to Re: Re: A set of new operators. In keeping with the design of Perl?
in thread A set of new operators. In keeping with the design of Perl?
I think you should at least consider writing such code more like:
Hugomy $set = $hash{$set}; my $data = $set->{data}; for (@$data) { $set->{min} = $set->{min} < $_ ? $set->{min} : $_; }
|
|---|