public function isNegative()

in src/datetime/Time.php [231:236]


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