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 unhex

boost::algorithm::unhex — Converts a sequence of hexadecimal characters into a sequence of integers.

Synopsis

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


template<typename T, typename OutputIterator> 
  OutputIterator unhex(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 null-terminated input sequence.

Returns:

The updated output iterator


PrevUpHomeNext