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:

my $set = $hash{$set}; my $data = $set->{data}; for (@$data) { $set->{min} = $set->{min} < $_ ? $set->{min} : $_; }

Hugo
  • Comment on Re: Re: Re: A set of new operators. In keeping with the design of Perl?
  • Download Code