xrpld
Loading...
Searching...
No Matches
aged_unordered_multimap.h
1#pragma once
2
3#include <xrpl/beast/container/detail/aged_unordered_container.h>
4
5#include <chrono>
6#include <functional>
7#include <memory>
8#include <utility>
9
10namespace beast {
11
12template <
13 class Key,
14 class T,
15 class Clock = std::chrono::steady_clock,
16 class Hash = std::hash<Key>,
17 class KeyEqual = std::equal_to<Key>,
18 class Allocator = std::allocator<std::pair<Key const, T>>>
21
22} // namespace beast
Associative container where each element is also indexed by time.
detail::AgedUnorderedContainer< true, true, Key, T, Clock, Hash, KeyEqual, Allocator > aged_unordered_multimap