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

履歴 編集

function
<expected>

std::expected.void::has_value(C++23)

// expected<cv void, E>部分特殊化
constexpr bool has_value() const noexcept;

概要

正常値を保持しているかを判定する。

戻り値

正常値を保持しているならtrueを返し、エラー値を保持しているならfalseを返す。

例外

投げない

#include <expected>
#include <iostream>

int main()
{
  std::expected<void, int> x;
  std::cout << x.has_value() << std::endl;

  std::expected<void, int> y = std::unexpected{42};
  std::cout << y.has_value() << std::endl;
}

出力

1
0

バージョン

言語

  • C++23

処理系

関連項目

参照