mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-05 17:56:49 +00:00
This change updates the ColumnLimit from 80 to 120, and applies clang-format to reformat the code.
32 lines
763 B
C++
32 lines
763 B
C++
#ifndef XRPL_BASICS_STRHEX_H_INCLUDED
|
|
#define XRPL_BASICS_STRHEX_H_INCLUDED
|
|
|
|
#include <boost/algorithm/hex.hpp>
|
|
#include <boost/endian/conversion.hpp>
|
|
|
|
namespace xrpl {
|
|
|
|
template <class FwdIt>
|
|
std::string
|
|
strHex(FwdIt begin, FwdIt end)
|
|
{
|
|
static_assert(
|
|
std::is_convertible<typename std::iterator_traits<FwdIt>::iterator_category, std::forward_iterator_tag>::value,
|
|
"FwdIt must be a forward iterator");
|
|
std::string result;
|
|
result.reserve(2 * std::distance(begin, end));
|
|
boost::algorithm::hex(begin, end, std::back_inserter(result));
|
|
return result;
|
|
}
|
|
|
|
template <class T, class = decltype(std::declval<T>().begin())>
|
|
std::string
|
|
strHex(T const& from)
|
|
{
|
|
return strHex(from.begin(), from.end());
|
|
}
|
|
|
|
} // namespace xrpl
|
|
|
|
#endif
|