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

◆ SoundRoutine() [3/3]

MayaFlux::Vruta::SoundRoutine::SoundRoutine ( SoundRoutine &&  other)
noexcept

Move constructor.

Parameters
otherSoundRoutine to move from

Transfers ownership of the coroutine from other to this SoundRoutine. After the move, other no longer references any coroutine.

Definition at line 49 of file Routine.cpp.

50 : m_handle(std::exchange(other.m_handle, {}))
51{
52}
std::coroutine_handle< promise_type > m_handle
Handle to the underlying coroutine.
Definition Routine.hpp:460