R/fCheckInteger.R

Defines functions fCheckInteger

Documented in fCheckInteger

#' Logical test to determine whether numeric vector is a whole integer..
#'
#' @export
#' @title Check whether vector is an integer
#' @param x numeric.

# Logical test to determine whether the hour column contains any half-hours
  # (hourly datafiles will return a vector of all TRUE)
  fCheckInteger <- function(x) {
    x%%1==0
  }
ksmiff33/FluxSynthU documentation built on Dec. 15, 2020, 10:29 p.m.