rippled
Loading...
Searching...
No Matches
StartUpType.h
1#pragma once
2
3#include <iosfwd>
4#include <type_traits>
5
6namespace xrpl {
7
9
11operator<<(std::ostream& os, StartUpType const& type)
12{
13 return os << static_cast<std::underlying_type_t<StartUpType>>(type);
14}
15
16} // namespace xrpl
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
Definition algorithm.h:5
std::ostream & operator<<(std::ostream &out, base_uint< Bits, Tag > const &u)
Definition base_uint.h:612
StartUpType
Definition StartUpType.h:8