Transfer any read-side critical section associated with the other
jss::rcu_reader
object to *this
.
Ends any existing read-side critical section associated with *this
.
rcu_reader& operator=(rcu_reader&& other);
As if:
rcu_reader& operator=(rcu_reader&& other){ rcu_reader temp(std::move(other)); swap(temp); return *this; }