delete method

void delete(
  1. int count
)

Delete count characters from current position.

Implementation

void delete(int count) {
  assert(count >= 0);
  if (count == 0) return;
  push(Operation.delete(count));
}