public function compare()

in src/datetime/MonoTime/Timestamp.php [41:45]


  public function compare(this $other): int {
    $a = $this->toRaw();
    $b = $other->toRaw();
    return $a[0] !== $b[0] ? $a[0] <=> $b[0] : $a[1] <=> $b[1];
  }