logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

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  produces  slightly
       different  results than concat:  concat removes one level of grouping before forming the list, while list
       works directly from the original arguments.

Example

       The command

              list a b "c d e  " "  f {g h}"

       will return

              ab{cde}{f{gh}}

       while concat with the same arguments will return

              abcdef{gh}

Keywords

       element, list, quoting

Tcl                                                                                                   list(3tcl)

Name

       list - Create a list

See Also

lappend(3tcl),  lassign(3tcl),  ledit(3tcl),  lindex(3tcl),  linsert(3tcl),  llength(3tcl),   lmap(3tcl),
       lpop(3tcl),  lrange(3tcl),  lremove(3tcl),  lrepeat(3tcl), lreplace(3tcl), lreverse(3tcl), lsearch(3tcl),
       lseq(3tcl), lset(3tcl), lsort(3tcl)

Synopsis

list ?argarg...?
________________________________________________________________________________________________________________

See Also