operator > method

bool operator >(
  1. Version other
)

Returns true if this version is greater than other.

Implementation

bool operator >(Version other) {
  if (this == other) {
    return false;
  }

  if (major > other.major) {
    return true;
  } else if (major < other.major) {
    return false;
  }

  if (minor > other.minor) {
    return true;
  } else if (minor < other.minor) {
    return false;
  }

  if (patch > other.patch) {
    return true;
  } else if (patch < other.patch) {
    return false;
  }

  if (build > other.build) {
    return true;
  }

  return false;
}