public function isBetweenExclusive()

in src/datetime/Time.php [363:367]


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