containsOffset method

bool containsOffset(
  1. int offset
)

Implementation

bool containsOffset(int offset) {
  return offset >= startOffset && offset < endOffset;
}