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

◆ find_slot() [2/2]

const MeshSlot * MayaFlux::Nodes::Network::MeshNetwork::find_slot ( std::string_view  name) const

Definition at line 84 of file MeshNetwork.cpp.

85{
86 auto it = std::ranges::find_if(m_slots,
87 [name](const MeshSlot& s) { return s.name == name; });
88 return it != m_slots.end() ? &*it : nullptr;
89}

References m_slots, and MayaFlux::Nodes::Network::MeshSlot::name.