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

◆ get()

std::shared_ptr< NetworkOperator > MayaFlux::Nodes::Network::OperatorChain::get ( size_t  index) const

Return the operator at the given index, or nullptr if out of range.

Parameters
indexZero-based position in insertion order.

Definition at line 35 of file OperatorChain.cpp.

36{
37 if (index >= m_operators.size())
38 return nullptr;
39 return m_operators[index];
40}
std::vector< std::shared_ptr< NetworkOperator > > m_operators

References m_operators.