Defined in header <regex> | ||
---|---|---|
match_results& operator=( const match_results& other ); | (1) | (since C++11) |
match_results& operator=( match_results&& other ) noexcept; | (2) | (since C++11) |
Assigns the contents.
other
. other
using move semantics. other
is in valid, but unspecified state after the operation. other | - | another match results object |
*this
.
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/regex/match_results/operator=