public function compare()

in src/datetime/DateTime/Timestamp.php [55:59]


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