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 a snapshot of the develop branch, built from commit c8cc5bbc3b.
PrevUpHomeNext

Function template unhex

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

Synopsis

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


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

Description

Parameters:

input

A container to be converted

Returns:

A container with the decoded text


PrevUpHomeNext