deleteLine method

void deleteLine(
  1. int y,
  2. int n,
  3. Cell? cell
)

Deletes n lines at y within full bounds.

Upstream: third_party/ultraviolet/buffer.go (DeleteLine).

Implementation

void deleteLine(int y, int n, Cell? cell) =>
    deleteLineArea(y, n, cell, bounds());