retreatBy method

void retreatBy(
  1. int count
)

Retreats the reading position by count lines.

Implementation

void retreatBy(int count) {
  _pos -= count;
}