in src/datetime/_Private/Comparable.php [73:80]
final public function isBetweenInclusive(
this::TComparableTo $a,
this::TComparableTo $b,
): bool {
$a = $this->compare($a);
$b = $this->compare($b);
return $a === 0 || $a !== $b;
}