match_results() : match_results(Allocator()) {}
(1)explicit match_results( const Allocator& a );
(2)match_results( const match_results& rhs );
(3)match_results( const match_results& rhs, const Allocator& a );
(4)match_results( match_results&& rhs ) noexcept;
(5)match_results( match_results&& rhs, const Allocator& a );
(6)1,2) Constructs a match result with no established result state.
1) The default constructor.
2) Constructs the match result using a copy of a as the allocator.
When the construction finishes,
ready()
returns
falseand
size()
returns
â0â.
3-6) Constructs a match result from rhs.
3) The copy constructor.
4) Constructs the match result using a copy of a as the allocator.
5) The move constructor. When the construction finishes, rhs is in a valid but unspecified state.
6) Constructs the match result using a copy of a as the allocator. When the construction finishes, rhs is in a valid but unspecified state.
Given the value of
rhsbefore the construction as
mand any integer in
[
â0â,
m.size())
as
n, when the construction finishes, the following member functions should return the specified values:
[edit] Parameters a - allocator to use for all memory allocations of this container rhs - anothermatch_results
to use as source to initialize the match_results
with [edit] Exceptions
1-4) May throw implementation-defined exceptions.
6) Throws nothing if a == rhs.get_allocator() is true.
[edit] Example [edit] Defect reportsThe following behavior-changing defect reports were applied retroactively to previously published C++ standards.
DR Applied to Behavior as published Correct behavior LWG 2191 C++11 n could be negative in the postconditions of overloads (3-6) can only be non-negative LWG 2195 C++11 the constructors required by AllocatorAwareContainer were missing added P0935R0 C++11 default constructor was explicit made implicitRetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4