ITK  4.1.0
Insight Segmentation and Registration Toolkit
Classes | Namespaces | Defines
itkNumericTraits.h File Reference

Go to the source code of this file.

Classes

class  itk::NumericTraits< T >
 Define additional traits for native types such as int or float. More...

Namespaces

namespace  itk

Defines

#define itkNUMERIC_TRAITS_MIN_MAX_MACRO()

Define Documentation

Value:
static ValueType min()                           \
    {                                              \
    return vcl_numeric_limits< ValueType >::min(); \
    }                                              \
  static ValueType max()                           \
    {                                              \
    return vcl_numeric_limits< ValueType >::max(); \
    }                                              \
  static ValueType min(ValueType)                  \
    {                                              \
    return vcl_numeric_limits< ValueType >::min(); \
    }                                              \
  static ValueType max(ValueType)                  \
    {                                              \
    return vcl_numeric_limits< ValueType >::max(); \
    }                                              \

Definition at line 26 of file itkNumericTraits.h.