operator >= method

bool operator >=(
  1. WindowSize other
)

Whether this WindowSize is larger than or equal to other.

Implementation

bool operator >=(WindowSize other) => value >= other.value;