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).



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



____________________________________________________________________________________________________________

NAME
       linsert - Insert elements into a list

SYNOPSIS
       linsert list index element ?element element ...?
____________________________________________________________________________________________________________


DESCRIPTION
       This  command produces a new list from list by inserting all of the element arguments just before the
       indexth element of list.  Each element argument will become a separate element of the new  list.   If
       index is less than or equal to zero, then the new elements are inserted at the beginning of the list.
       If index has the value end, or if it is greater than or equal to the number of elements in the  list,
       then  the  new elements are appended to the list.  end-integer refers to the last element in the list
       minus the specified integer offset.



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


KEYWORDS
       element, insert, list



Tcl                                                  8.2                                          linsert(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.