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

◆ Event() [3/3]

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

Move constructor.

Parameters
otherEvent to move from

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

Definition at line 42 of file Event.cpp.

43 : m_handle(std::exchange(other.m_handle, {}))
44{
45}
std::coroutine_handle< promise_type > m_handle
Definition Event.hpp:225