Iros
 
Loading...
Searching...
No Matches
allocation.h
Go to the documentation of this file.
1#pragma once
2
3#include "di/types/prelude.h"
4
5namespace di::container {
6template<typename T>
7struct Allocation {
8 using Value = T;
9
10 T* data { nullptr };
11 size_t count { 0 };
12};
13}
Definition sequence.h:12
Definition allocation.h:7
T Value
Definition allocation.h:8
size_t count
Definition allocation.h:11
T * data
Definition allocation.h:10