operator > method

bool operator >(
  1. TValue other
)

Determines whether this value is greater than other.

Implementation

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