13#include "Refureku/Config.h"
23 using const_pointer = T
const*;
25 using const_reference = T
const&;
34 RFK_NODISCARD
constexpr T*
allocate(std::size_t count);
46 #include "Refureku/Containers/Allocator.inl"
Definition: Allocator.h:19
RFK_NODISCARD constexpr T * allocate(std::size_t count)
Allocate count * sizeof(T) bytes.
constexpr void deallocate(T *allocatedMemory, std::size_t count)
Deallocate count * sizeof(T) bytes at the specified memory.
Definition: Allocator.h:16