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

lindex - Retrieve an element from a list

Description

       The lindex command accepts a parameter, list, which it treats as a Tcl list. It also accepts zero or more
       indices into the list.  The indices may be presented either consecutively on the command line, or grouped
       in a Tcl list and presented as a single argument.

       If no indices are presented, the command takes the form:

              lindexlist

       or

              lindexlist {}

       In this case, the return value of lindex is simply the value of the list parameter.

       When presented with a single index, the lindex command treats list as a Tcl list and returns the index'th
       element  from it (0 refers to the first element of the list).  In extracting the element, lindex observes
       the same rules concerning braces and quotes and backslashes as  the  Tcl  command  interpreter;  however,
       variable  substitution  and  command  substitution do not occur.  If index is negative or greater than or
       equal to the number of elements in value, then an empty string is returned.  The interpretation  of  each
       simple  index  value  is the same as for the command stringindex, supporting simple index arithmetic and
       indices relative to the end of the list.

       If additional index arguments are supplied, then each argument is used in turn to select an element  from
       the previous indexing operation, allowing the script to select elements from sublists.  The command,

              lindex $a 1 2 3

       or

              lindex $a {1 2 3}

       is synonymous with

              lindex [lindex [lindex $a 1] 2] 3

Examples

       Lists can be indexed into from either end:

              lindex {a b c} 0
                    alindex {a b c} 2
                    clindex {a b c} end
                    clindex {a b c} end-1
                    b

       Lists or sequences of indices allow selection into lists of lists:

              lindex {a b c}
                    abclindex {a b c} {}
                    abclindex {{a b c} {d e f} {g h i}} 2 1
                    hlindex {{a b c} {d e f} {g h i}} {2 1}
                    hlindex {{{a b} {c d}} {{e f} {g h}}} 1 1 0
                    glindex {{{a b} {c d}} {{e f} {g h}}} {1 1 0}
                    g

       List  indices  may  also  perform  limited  computation,  adding  or subtracting fixed amounts from other
       indices:

              set idx 1
              lindex {a b c d e f} $idx+2
                    d
              set idx 3
              lindex {a b c d e f} $idx+2
                    f

Keywords

       element, index, list

Tcl                                                    8.4                                          lindex(3tcl)

Name

       lindex - Retrieve an element from a list

See Also

list(3tcl),  lappend(3tcl),  lassign(3tcl),  ledit(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), string(3tcl)

Synopsis

lindexlist ?index...?
________________________________________________________________________________________________________________

See Also