final public function isBetweenExclusive()

in src/datetime/_Private/Comparable.php [88:95]


  final public function isBetweenExclusive(
    this::TComparableTo $a,
    this::TComparableTo $b,
  ): bool {
    $a = $this->compare($a);
    $b = $this->compare($b);
    return $a !== 0 && $b !== 0 && $a !== $b;
  }