operator >= method

bool operator >=(
  1. StreamPosition p2
)

Compares whether this >= p2.

Implementation

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