Ice Sheet System Model  4.18
Code documentation
Functions
isnan.h File Reference
#include <cmath>

Go to the source code of this file.

Functions

template<class T >
int xIsNan (const T &X)
 
template<class T >
int xIsInf (const T &X)
 

Function Documentation

◆ xIsNan()

template<class T >
int xIsNan ( const T &  X)

Definition at line 16 of file isnan.h.

16 {return std::isnan(X); }

◆ xIsInf()

template<class T >
int xIsInf ( const T &  X)

Definition at line 18 of file isnan.h.

18 {return std::isinf(X); }