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 InputIterator, typename OutputIterator> 
  OutputIterator 
  unhex(InputIterator first, InputIterator last, OutputIterator out);

Description

[Note] Note

Based on the MySQL function of the same name

Parameters:

first

The start of the input sequence

last

One past the end of the input sequence

out

An output iterator to the results into

Returns:

The updated output iterator


PrevUpHomeNext