view v delete row count   =>   view
v   input view
row   row position
count   row count

Delete takes an input view and returns one with count rows starting at row omitted. The views v and {w} must have the same structure.

Examples:
set v [view {A B} def {a b aa bb aaa bbb}]

view $v delete 1 1
AB
0ab
1aaabbb
view $v delete 1 2
AB
0ab