std::generator<Ref,V,Allocator>::operator=
From cppreference.com
generator& operator=( generator other ) noexcept; |
(since C++23) | |
Replaces the contents of the generator object.
Equivalent to:
Parameters
other | - | another generator to be copied from |
Return value
*this
Complexity
This section is incomplete |
Notes
Iterators previously obtained from other are not invalidated – they become iterators into *this.
Example
This section is incomplete Reason: no example |