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

◆ any_active()

bool MayaFlux::Buffers::StreamSliceProcessor::any_active ( ) const

Check if any slot is active.

Returns
True if any slot is active, false if all are inactive.

Definition at line 103 of file StreamSliceProcessor.cpp.

104{
105 return std::ranges::any_of(m_slots, [](const auto& slot) {
106 return slot.slice.active;
107 });
108}

References m_slots.