#include <functional>
#include <map>
#include <unordered_map>
Go to the source code of this file.
|
| template<typename KeyWithId , typename Value , typename Allocator = std::allocator<std::pair<const KeyWithId, Value>>> |
| using | tvm::utils::internal::map = std::map< KeyWithId, Value, IdLess< KeyWithId >, Allocator > |
| |
| template<typename KeyWithId , typename Value , typename Allocator = std::allocator<std::pair<const KeyWithId, Value>>> |
| using | tvm::utils::internal::unordered_map = std::unordered_map< KeyWithId, Value, HashId< KeyWithId >, IdEqual< KeyWithId >, Allocator > |
| |