Helios Engine
A modular ECS based data-oriented C++23 game engine framework
Loading...
Searching...
No Matches
helios::mem::ResettablePmrAllocator Concept Reference

Concept for PMR resources that support reset. More...

#include <allocator_traits.hpp>

Concept definition

template<typename T>
concept ResettablePmrAllocator = PmrAllocator<T> && requires(T& allocator) {
{ allocator.Reset() } -> std::same_as<void>;
}
Concept for PMR resources used by the memory module.
Concept for PMR resources that support reset.

Detailed Description

Concept for PMR resources that support reset.

Template Parameters
TCandidate type

Definition at line 36 of file allocator_traits.hpp.