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

履歴 編集

function
<expected>

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

constexpr bool has_value() const noexcept;

概要

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

戻り値

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

例外

投げない

#include <expected>
#include <iostream>
#include <string>

int main()
{
  std::expected<std::string, int> x = "Hello";
  std::cout << x.has_value() << std::endl;

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

出力

1
0

バージョン

言語

  • C++23

処理系

関連項目

参照