Samchon Framework for CPP  1.0.0
CriticalTreeMap.hpp
1 #pragma once
2 
3 #include <samchon/TreeMap.hpp>
4 #include <samchon/library/CriticalAllocator.hpp>
5 
6 namespace samchon
7 {
8 namespace library
9 {
17  template <typename Key, typename T, typename _Pr = std::less<Key>>
18  using CriticalTreeMap = TreeMap<Key, T, _Pr, CriticalAllocator<std::pair<const Key, T>>>;
19 };
20 };