v input view count number of rows in result
Spread returns a view with each row of v repeated count times.
set v [view A def {a b c}] view $v spread 2 A 0a 1a 2b 3b 4c 5c
A 0a 1a 2b 3b 4c 5c