operator > method

bool operator >(
  1. Path other
)

Implementation

bool operator >(Path other) {
  if (equals(other)) {
    return false;
  }
  final length = min(this.length, other.length);
  for (var i = 0; i < length; i++) {
    if (this[i] < other[i]) {
      return false;
    } else if (this[i] > other[i]) {
      return true;
    }
  }
  if (this.length < other.length) {
    return false;
  }
  return true;
}