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

◆ get_expanse()

std::shared_ptr< Expanse > MayaFlux::Nexus::Tapestry::get_expanse ( std::string_view  name) const

Look up a named Expanse.

Returns
The Expanse, or nullptr if name is not registered.

Definition at line 99 of file Tapestry.cpp.

100{
101 auto it = m_expanses.find(std::string(name));
102 return it != m_expanses.end() ? it->second : nullptr;
103}
std::unordered_map< std::string, std::shared_ptr< Expanse > > m_expanses
Definition Tapestry.hpp:130

References m_expanses.