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

◆ operator=() [2/2]

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

Definition at line 590 of file Routine.cpp.

591{
592 if (this != &other) {
593 if (m_handle && m_handle.address())
594 m_handle.destroy();
595 m_handle = std::exchange(other.m_handle, {});
596 }
597 return *this;
598}
std::coroutine_handle< promise_type > m_handle
Definition Routine.hpp:811