mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 07:57:51 -05:00
26 lines
645 B
C++
26 lines
645 B
C++
#pragma once
|
|
|
|
#include "msvc/allocator.hpp"
|
|
#include "msvc/umap.hpp"
|
|
#include "msvc/uset.hpp"
|
|
|
|
#include <map>
|
|
#include <vector>
|
|
#include <set>
|
|
|
|
namespace gd {
|
|
template <class T>
|
|
using vector = std::vector<T>;
|
|
|
|
template <class K, class V>
|
|
using map = std::map<K, V>;
|
|
|
|
template <class K, class V>
|
|
using unordered_map = geode::stl::unordered_map<K, V, std::hash<K>, std::equal_to<K>, geode::stl::allocator<std::pair<const K, V>>>;
|
|
|
|
template <class K>
|
|
using set = std::set<K>;
|
|
|
|
template <class K>
|
|
using unordered_set = geode::stl::unordered_set<K, std::hash<K>, std::equal_to<K>, geode::stl::allocator<K>>;
|
|
}
|