最終更新日時(UTC):
が更新

履歴 編集

function
<chrono>

std::chrono::hh_mm_ss::is_negative(C++20)

constexpr bool is_negative() const noexcept; // (1) C++20

概要

負の時間かを判定する。

戻り値

コンストラクタで設定された時間が負である場合にtrueを返し、そうでなければfalseを返す

#include <cassert>
#include <chrono>

namespace chrono = std::chrono;
using namespace std::chrono_literals;

int main()
{
  chrono::hh_mm_ss time{-(15h + 30min + 20s)};
  assert(time.is_negative() == true);
}

出力

バージョン

言語

  • C++20

処理系