#include "XXCppExportDef.h"
#include <cstddef>
#include <iterator>
#include <type_traits>
#include "XXRange.hpp"
Go to the source code of this file.
|
| template<typename TestType> |
| using | XX::isIntegerType = typename std::enable_if<std::is_integral<TestType>::value, bool>::type |
| template<typename TestType> |
| using | XX::isFloatType = typename std::enable_if<std::is_floating_point<TestType>::value, bool>::type |
| template<typename TestType> |
| using | XX::isSigned = typename std::enable_if<std::is_signed<TestType>::value, bool>::type |
| template<typename TestType> |
| using | XX::isUnsigned = typename std::enable_if<!std::is_signed<TestType>::value, bool>::type |