has method

bool has(
  1. int space
)

test if has amount of symbols left

Implementation

bool has(int space) {
  return parsable.length > position + space;
}