rippled
Loading...
Searching...
No Matches
aged_multimap.h
1#ifndef BEAST_CONTAINER_AGED_MULTIMAP_H_INCLUDED
2#define BEAST_CONTAINER_AGED_MULTIMAP_H_INCLUDED
3
4#include <xrpl/beast/container/detail/aged_ordered_container.h>
5
6#include <chrono>
7#include <functional>
8#include <memory>
9
10namespace beast {
11
12template <
13 class Key,
14 class T,
15 class Clock = std::chrono::steady_clock,
16 class Compare = std::less<Key>,
18using aged_multimap = detail::
19 aged_ordered_container<true, true, Key, T, Clock, Compare, Allocator>;
20
21}
22
23#endif
Associative container where each element is also indexed by time.