public function isPositive()

in src/datetime/Time.php [217:222]


  public function isPositive(): bool {
    return $this->hours > 0 ||
      $this->minutes > 0 ||
      $this->seconds > 0 ||
      $this->nanoseconds > 0;
  }