Scroll to navigation

lreverse(3tcl) Tcl Built-In Commands lreverse(3tcl)


NAME

lreverse - Reverse the order of a list

SYNOPSIS

lreverse list

DESCRIPTION

The lreverse command returns a list that has the same elements as its input list, list, except with the elements in the reverse order.

EXAMPLES

lreverse {a a b c}
      → c b a a
lreverse {a b {c d} e f}
      → f e {c d} b a

SEE ALSO

list(3tcl), lsearch(3tcl), lsort(3tcl)

KEYWORDS

element, list, reverse
8.5 Tcl