#include <iostream>
#include <cassert>
#include <string>
#include "boost/type_traits/is_integral.hpp"
Go to the source code of this file.
|
| IECore |
| This namespace contains all components of the core library.
|
|
|
template<typename T , typename OutputIterator > |
void | IECore::decToHex (T value, OutputIterator result) |
|
template<typename InputIterator , typename OutputIterator > |
void | IECore::decToHex (InputIterator first, InputIterator last, OutputIterator result) |
|
template<typename RandomAccessIterator > |
std::string | IECore::decToHex (RandomAccessIterator first, RandomAccessIterator last) |
|
template<typename T > |
std::string | IECore::decToHex (T n) |
|
template<typename T , typename InputIterator > |
T | IECore::hexToDec (InputIterator first, InputIterator last) |
|
template<typename T > |
T | IECore::hexToDec (const std::string &s) |
|
template<typename T , typename InputIterator , typename OutputIterator > |
void | IECore::hexToDec (InputIterator first, InputIterator last, OutputIterator result) |
|
Defines template conversions between hex and decimal