public function isBetweenInclusive()

in src/datetime/Time.php [351:355]


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