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

◆ find_slot() [1/2]

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

Definition at line 38 of file InstanceNetwork.cpp.

39{
40 auto it = std::ranges::find_if(
41 m_slots, [name](const GeometrySlot& s) { return s.name == name; });
42 return it != m_slots.end() ? &*it : nullptr;
43}

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