v input view w rows to be inserted
Append takes an input view and returns one with the rows of w appended. The views v and w must have the same structure.
Example:set v [view {A B C} def {a b c aa bb cc}]
set w [view {A B C} def {x y z xx yy zz}]
view $v append $w
A B C 0 a b c 1 aa bb cc 2 x y z 3 xx yy zz