#include "itkMacro.h"
#include <limits>
#include <complex>
Go to the source code of this file.
#define itkNUMERIC_TRAITS_MIN_MAX_MACRO |
( |
| ) |
|
Value:static constexpr ValueType min(ValueType) \
{ \
return std::numeric_limits< ValueType >::min(); \
} \
static constexpr ValueType max(ValueType) \
{ \
return std::numeric_limits< ValueType >::max(); \
} \
static constexpr ValueType min() \
{ \
return std::numeric_limits< ValueType >::min(); \
} \
static constexpr ValueType max() \
{ \
return std::numeric_limits< ValueType >::max(); \
}
Definition at line 26 of file itkNumericTraits.h.