operator > method

bool operator >(
  1. KdbxVersion other
)

Implementation

bool operator >(KdbxVersion other) =>
    major > other.major || (major == other.major && minor > other.minor);