operator >= method

bool operator >=(
  1. TValue other
)

Determines whether this value is greater than or equal to other.

Implementation

bool operator >=(TValue other) => baseValue >= other.baseValue;