http://www.perlmonks.org?node_id=675558


in reply to Re: Thoughts on some new operators for perl (6 or 7)
in thread Thoughts on some new operators for perl (6 or 7)

one(@list_of_int) <= all(@list_of_int)

Shouldn't that be true if the lowest value is a dupe and false if not?

Now four years later I think what the op wanted is best written:

my $lowest = [min] @list_of_int;