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

This is the documentation for an old version of boost. Click here for the latest Boost documentation.
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 T, typename OutputIterator> 
  boost::enable_if< boost::is_integral< T >, OutputIterator >::type 
  hex_lower(const T * ptr, OutputIterator out);

Description

[Note] Note

Based on the MySQL function of the same name

Parameters:

out

An output iterator to the results into

ptr

A pointer to a 0-terminated sequence of data.

Returns:

The updated output iterator


PrevUpHomeNext