compare method

Ordering<int> compare(
  1. int other
)

Implementation

Ordering<int> compare(int other) {
  final difference = this - other;

  if (difference > 0) {
    return Greater(difference);
  } else if (difference < 0) {
    return Less(-difference);
  } else {
    return const Equal();
  }
}