#include <ppl.h>
template<typename _DataType> 
 
 5635         static_assert(std::is_integral<_DataType>::value,
 
 5636             "Type should be integral to use default radix function. For more information on integral types, please refer to https://msdn.microsoft.com/en-us/library/bb983099.aspx.");
 
 5637         static_assert((
sizeof(_DataType) <= 
sizeof(
size_t)), 
"Passed Type is bigger than size_t.");
 
 5639         if (std::is_unsigned<_DataType>::value)
 
 5648             return (((
SIZE_MAX/2) + 1) + static_cast<size_t>(
_Val));
 
_In_ int _Val
Definition: vcruntime_string.h:62
 
#define SIZE_MAX
Definition: limits.h:76
 
 
 
 
The documentation for this struct was generated from the following file: