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 Null
#'
#' @keywords internal
is_32bit <- function() {
    is_32bit_windows <- .Platform$OS.type == "windows" &&
        .Platform$r_arch == "i386"
    return(is_32bit_windows)
}
NathanSkene/EWCE documentation built on April 10, 2024, 1:02 a.m.