view v repeat count   =>   view
v   input view
count   number of rows in result

Repeat returns a view with count copies of v, concatenated one after the other.

Example:
set v [view A def {a b c}]

view $v repeat 2
A
0a
1b
2c
3a
4b
5c