Go to the first, previous, next, last section, table of contents.


reverse

Function: reverse { list -> list }
file: job.t
package: muf
status: alpha

The reverse, function returns copy of the given list with the elements in reverse order. The original list is unchanged.

Stack:
[ 'a' 'b' ]l reverse --> list
Stack:
list first list second
Stack: 'b' 'a'

See section nreverse.


Go to the first, previous, next, last section, table of contents.