std::regex_error::operator=
From cppreference.com
< cpp | regex | regex error
| regex_error& operator=( const regex_error& other ) noexcept; |
(C++11以降) | |
other の内容を代入します。もし *this と other の両方が動的型 std::regex_error である場合、代入後に std::strcmp(what(), other.what()) == 0 となります。
[編集] パラメータ
| その他 | - | 代入する別の regex_error オブジェクト |
[編集] 戻り値
*this
[編集] 例
| このセクションは未完成です 理由: 例がありません |