xtd 0.2.0
allocator.hpp
Go to the documentation of this file.
1
4#pragma once
5#include <memory>
6
8namespace xtd {
10 namespace collections {
12 namespace generic {
14 namespace helpers {
16
37 template<class type_t>
38 using allocator = std::allocator<type_t>;
40 }
41 }
42 }
43}
std::allocator< type_t > allocator
Represent an allocator alias.
Definition allocator.hpp:38
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.hpp:10