xrpld
Loading...
Searching...
No Matches
LowestLayer.h
1#pragma once
2
3#include <boost/beast/core/stream_traits.hpp>
4
5namespace xrpl {
6
7template <class T>
8decltype(auto)
9getLowestLayer(T& t) noexcept
10{
11 return boost::beast::get_lowest_layer(t);
12}
13
14} // namespace xrpl
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
Definition algorithm.h:5
decltype(auto) getLowestLayer(T &t) noexcept
Definition LowestLayer.h:9