operator > method

bool operator >(
  1. Uint32 other
)

Strict evaluation if this numerical element is larger.

Implementation

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