18 void Initialize(
void* ownedMemory,
size_t size);
19 bool Initialize(
size_t size);
20 void* Allocate(
size_t size);
25 template<
typename T,
typename... Args>
26 T* Allocate(Args&&... params) {
27 T* ptr =
static_cast<T*
>(Allocate(
sizeof(T)));
30 new (ptr) T(std::forward<Args>(params)...);
37 T* AllocateWithoutConstructor() {
38 return static_cast<T*
>(Allocate(
sizeof(T)));
42 size_t totalMemorySize;
46 bool hasAllocatedOwnMemory;