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

◆ all_expanse_ids()

std::vector< uint32_t > MayaFlux::Nexus::Fabric::all_expanse_ids ( ) const

Stable ids of all registered Expanses in insertion order.

Definition at line 336 of file Fabric.cpp.

337{
338 std::vector<uint32_t> ids;
339 ids.reserve(m_expanses.size());
340 for (const auto& [id, _] : m_expanses)
341 ids.push_back(id);
342 return ids;
343}
std::unordered_map< uint32_t, std::shared_ptr< Expanse > > m_expanses
Definition Fabric.hpp:293
uint32_t id() const
Stable id for this Fabric, assigned by Tapestry at construction.
Definition Fabric.hpp:77

References m_expanses.