ADC Home > Reference Library > Reference > Mac OS X > Mac OS X Man Pages

 

This document is a Mac OS X manual page. Manual pages are a command-line technology for providing documentation. You can view these manual pages locally using the man(1) command. These manual pages come from many different sources, and thus, have a variety of writing styles.

For more information about the manual page format, see the manual page for manpages(5).



list(n)                                     Tcl Built-In Commands                                    list(n)



____________________________________________________________________________________________________________

NAME
       list - Create a list

SYNOPSIS
       list ?arg arg ...?
____________________________________________________________________________________________________________


DESCRIPTION
       This  command  returns a list comprised of all the args, or an empty string if no args are specified.
       Braces and backslashes get added as necessary, so that the lindex command may be used on  the  result
       to  re-extract  the  original  arguments,  and also so that eval may be used to execute the resulting
       list, with arg1 comprising the command's name and the other args comprising its arguments.  List pro-duces produces
       duces  slightly  different  results than concat:  concat removes one level of grouping before forming
       the list, while list works directly from the original arguments.  For example, the command
              list a b {c d e} {f {g h}}
       will return
              a b {c d e} {f {g h}}
       while concat with the same arguments will return
              a b c d e f {g h}


SEE ALSO
       lappend(n), lindex(n), linsert(n), llength(n), lsearch(n), lset(n), lsort(n), lrange(n), lreplace(n)  |


KEYWORDS
       element, list



Tcl                                                                                                  list(n)

Did this document help you?
Yes: Tell us what works for you.
It’s good, but: Report typos, inaccuracies, and so forth.
It wasn’t helpful: Tell us what would have helped.