Boost C++ Libraries Home Libraries People FAQ More

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