deleteCell method

void deleteCell(
  1. int x,
  2. int y,
  3. int n,
  4. Cell? cell,
)

Deletes n cells at (x,y) within full bounds (ansi DCH semantics).

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

Implementation

void deleteCell(int x, int y, int n, Cell? cell) =>
    deleteCellArea(x, y, n, cell, bounds());