class
std::from_chars_result(C++17)
namespace std {
struct from_chars_result {
const char* ptr;
errc ec;
};
}
概要
from_chars
の戻り値となる変換の成否と追加情報を表現するクラス。
メンバ変数
名前 |
説明 |
対応バージョン |
ptr |
(指定したフォーマットの)パターンにマッチしない最初の入力文字の位置を指すか、入力文字列の先頭を指すポインタ。 |
C++17 |
ec |
成功ならec == errc{} 、失敗ならばerrc::invalid_argument を表すerrc の値。 |
C++17 |
メンバ関数
成否判定
比較演算子
名前 |
説明 |
対応バージョン |
friend bool operator==(const from_chars_result&, const from_chars_result&) = default; |
等値比較を行う |
C++20 |
friend bool operator!=(const from_chars_result&, const from_chars_result&); |
非等値比較を行う (== により使用可能) |
C++20 |
詳細はfrom_chars
の戻り値の項を参照のこと。
バージョン
言語
処理系
関連項目
参照