tcldoc Tcl/Tk 9.0.4
/

HomeTcl Built-In Commands Tcl

lrepeat

Build a list by repeating elements

literal type exactly as shown argument replace with your value ?optional? may be omitted

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

Keywords#

element · index · list

Copyright#