operator > method

bool operator >(
  1. Int32 other
)

Strict evaluation if this numerical element is larger.

Implementation

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