public function compare()

in src/datetime/Time.php [312:323]


  public function compare(this $other): int {
    if ($this->hours !== $other->hours) {
      return $this->hours <=> $other->hours;
    }
    if ($this->minutes !== $other->minutes) {
      return $this->minutes <=> $other->minutes;
    }
    if ($this->seconds !== $other->seconds) {
      return $this->seconds <=> $other->seconds;
    }
    return $this->nanoseconds <=> $other->nanoseconds;
  }