rippled
Loading...
Searching...
No Matches
include
xrpl
beast
container
aged_unordered_multiset.h
1
#ifndef BEAST_CONTAINER_AGED_UNORDERED_MULTISET_H_INCLUDED
2
#define BEAST_CONTAINER_AGED_UNORDERED_MULTISET_H_INCLUDED
3
4
#include <xrpl/beast/container/detail/aged_unordered_container.h>
5
6
#include <
chrono
>
7
#include <
functional
>
8
#include <
memory
>
9
10
namespace
beast
{
11
12
template
<
13
class
Key,
14
class
Clock =
std::chrono::steady_clock
,
15
class
Hash =
std::hash<Key>
,
16
class
KeyEqual =
std::equal_to<Key>
,
17
class
Allocator =
std::allocator<Key>
>
18
using
aged_unordered_multiset
=
detail::aged_unordered_container
<
19
true
,
20
false
,
21
Key,
22
void,
23
Clock,
24
Hash,
25
KeyEqual,
26
Allocator>;
27
28
}
29
30
#endif
std::allocator
chrono
beast::detail::aged_unordered_container
Associative container where each element is also indexed by time.
Definition
aged_unordered_container.h:69
std::equal_to
functional
std::hash
memory
beast
Definition
base_uint.h:653
std::chrono::steady_clock
Generated by
1.9.8