3.2.126 reverse
reverse
In list context, this function returns a list value consisting
of the elements of for (reverse 1 .. 10) { ... } Because of the way hashes flatten into lists when passed to (non-hash-aware) functions, reverse can also be used to invert a hash, presuming the values are unique: %barfoo = reverse %foobar;
In scalar context, the function concatenates all the elements of A small hint: reversing a list sorted earlier by a user-defined function can sometimes be achieved more easily by simply sorting in the opposite direction in the first place. |
|