MayaFlux 0.4.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ operator=() [2/2]

CrossRoutine & MayaFlux::Vruta::CrossRoutine::operator= ( CrossRoutine &&  other)
noexcept

Definition at line 404 of file Routine.cpp.

405{
406 if (this != &other) {
407 if (m_handle && m_handle.address())
408 m_handle.destroy();
409 m_handle = std::exchange(other.m_handle, {});
410 }
411 return *this;
412}
std::coroutine_handle< promise_type > m_handle
Definition Routine.hpp:726