Tcl8.6.14/Tk8.6.14 Documentation > Tcl Commands, version 8.6.14 > lrepeat

Tcl/Tk Applications | Tcl Commands | Tk Commands | [incr Tcl] Package Commands | SQLite3 Package Commands | TDBC Package Commands | tdbc::mysql Package Commands | tdbc::odbc Package Commands | tdbc::postgres Package Commands | tdbc::sqlite3 Package Commands | Thread Package Commands | Tcl C API | Tk C API | [incr Tcl] Package C API | TDBC Package C API

NAME

lrepeat — Build a list by repeating elements

SYNOPSIS

lrepeat count ?element ...?

DESCRIPTION

The lrepeat command creates a list of size count * number of elements by repeating count times the sequence of elements element .... count must be a non-negative integer, element can be any Tcl value. Note that lrepeat 1 element ... is identical to list element ....

EXAMPLES

lrepeat 3 a
       a a a
lrepeat 3 [lrepeat 3 0]
       {0 0 0} {0 0 0} {0 0 0}
lrepeat 3 a b c
       a b c a b c a b c
lrepeat 3 [lrepeat 2 a] b c
       {a a} b c {a a} b c {a a} b c

SEE ALSO

list, lappend, linsert, llength, lset

KEYWORDS

element, index, list
Copyright © 2003 Simon Geard. All rights reserved.