Helios Engine 0.1.0
A modular ECS based data-oriented C++23 game engine
 
Loading...
Searching...
No Matches
sparse_set.hpp File Reference
#include <helios/core_pch.hpp>
#include <helios/core/assert.hpp>
#include <helios/core/logger.hpp>
#include <algorithm>
#include <concepts>
#include <cstddef>
#include <limits>
#include <memory>
#include <span>
#include <string_view>
#include <type_traits>
#include <vector>

Go to the source code of this file.

Classes

class  helios::container::SparseSet< T, IndexType, Allocator >
 A sparse set data structure for efficient mapping of sparse indices to dense storage of values. More...
 

Namespaces

namespace  helios
 
namespace  helios::container
 

Functions

template<typename T , typename IndexType , typename Allocator >
void helios::container::swap (SparseSet< T, IndexType, Allocator > &lhs, SparseSet< T, IndexType, Allocator > &rhs) noexcept
 Swaps two sparse sets.