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

◆ append_chain()

void MayaFlux::Nodes::ChainNode::append_chain ( const std::shared_ptr< ChainNode > &  other)

Appends all nodes from another chain.

Parameters
otherChain whose nodes will be moved into this one

Definition at line 68 of file NodeChain.cpp.

69{
70 m_nodes.insert(m_nodes.end(),
71 std::make_move_iterator(other->m_nodes.begin()),
72 std::make_move_iterator(other->m_nodes.end()));
73}
std::vector< std::shared_ptr< Node > > m_nodes

References m_nodes.