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

◆ find_slot() [2/2]

const GeometrySlot * MayaFlux::Nodes::Network::InstanceNetwork::find_slot ( std::string_view  name) const

Definition at line 45 of file InstanceNetwork.cpp.

46{
47 auto it = std::ranges::find_if(
48 m_slots, [name](const GeometrySlot& s) { return s.name == name; });
49 return it != m_slots.end() ? &*it : nullptr;
50}

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