FreeBSD Manual Pages
lrepeat(n) Tcl Built-In Commands lrepeat(n) ______________________________________________________________________________ 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(n), lappend(n), linsert(n), llength(n), lset(n) KEYWORDS element, index, list Tcl 8.5 lrepeat(n)
NAME | SYNOPSIS | DESCRIPTION | EXAMPLES | SEE ALSO | KEYWORDS
Want to link to this manual page? Use this URL:
<https://www.freebsd.org/cgi/man.cgi?query=lrepeat.tcl86&manpath=FreeBSD+13.1-RELEASE+and+Ports>