touch method

void touch(
  1. int x,
  2. int y
)

Marks a single cell as dirty.

Upstream: third_party/ultraviolet/buffer_test.go (Touch). Marks the cell at (x, y) as dirty.

Implementation

void touch(int x, int y) => touchLine(x, y, 1);