R/is_32bit.R

Defines functions is_32bit

Documented in is_32bit

#' Checks whether OS is a 32-bit Windows
#'
#' Helper function to avoid duplicate test runs on Windows OS.
#'
#' @return Logical
#'
#' @keywords internal
is_32bit <- function() {
    is_32bit_windows <- .Platform$OS.type == "windows" &&
        .Platform$r_arch == "i386"
    return(is_32bit_windows)
}
neurogenomics/EpiProcess documentation built on March 19, 2022, 7:13 a.m.