Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

PrevUpHomeNext

Function template hex_lower

boost::algorithm::hex_lower — Converts a sequence of integral types into a lower case hexadecimal sequence of characters.

Synopsis

// In header: <boost/algorithm/hex.hpp>


template<typename String> String hex_lower(const String & input);

Description

Parameters:

input

A container to be converted

Returns:

A container with the encoded text


PrevUpHomeNext