seek method

bool seek([
  1. int n = 1
])

Nudge the cursor n characters forward or backward. Returns true if the new position is in bounds.

Implementation

bool seek([int n = 1]) {
    position += n;
		return inBounds;
}