src/utils.cpp
9135fdbd
 #include "utils.h"
866ab76f
 
 // Special function to check for NA'ness.
 
 bool isNA(int x) {
     return x==NA_INTEGER;
 }
 
 bool isNA(double x) {
     return ISNAN(x);
 }