operator >= method

bool operator >=(
  1. LogPosition p2
)

Compares whether this >= p2.

Implementation

bool operator >=(LogPosition p2) => this > p2 || this == p2;