rippled
Loading...
Searching...
No Matches
aged_multiset.h
1#pragma once
2
3#include <xrpl/beast/container/detail/aged_ordered_container.h>
4
5#include <chrono>
6#include <functional>
7#include <memory>
8
9namespace beast {
10
11template <
12 class Key,
13 class Clock = std::chrono::steady_clock,
14 class Compare = std::less<Key>,
15 class Allocator = std::allocator<Key>>
17
18}
Associative container where each element is also indexed by time.