inRange method

bool inRange(
  1. int symbol
)

Implementation

bool inRange(int symbol) {
  return symbol >= _start && symbol <= _end;
}