Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/tcl8.5.2/doc/lreverse.n @ 25

Last change on this file since 25 was 25, checked in by landauf, 16 years ago

added tcl to libs

File size: 898 bytes
Line 
1'\" -*- nroff -*-
2'\" Copyright (c) 2006 by Donal K. Fellows.  All rights reserved.
3'\"
4'\" See the file "license.terms" for information on usage and redistribution
5'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
6'\"
7'\" RCS: @(#) $Id: lreverse.n,v 1.6 2007/12/13 15:22:32 dgp Exp $
8'\"
9.so man.macros
10.TH lreverse n 8.5 Tcl "Tcl Built-In Commands"
11.BS
12'\" Note:  do not modify the .SH NAME line immediately below!
13.SH NAME
14lreverse \- Reverse the order of a list
15.SH SYNOPSIS
16\fBlreverse \fIlist\fR
17.BE
18.SH DESCRIPTION
19.PP
20The \fBlreverse\fR command returns a list that has the same elements as its
21input list, \fIlist\fR, except with the elements in the reverse order.
22.SH EXAMPLES
23.CS
24\fBlreverse\fR {a a b c}
25      \fI\(-> c b a a\fR
26\fBlreverse\fR {a b {c d} e f}
27      \fI\(-> f e {c d} b a\fR
28.CE
29.SH "SEE ALSO"
30list(n), lsearch(n), lsort(n)
31
32.SH KEYWORDS
33element, list, reverse
Note: See TracBrowser for help on using the repository browser.