R/ands.R

Defines functions .or_raw .and_raw

.and_raw <- function(x, y, nThread = getOption("hutilscpp.nThread", 1L)) {
  .Call("C_and_raw", x, y,  nThread,  PACKAGE = "hutilscpp")
}

.or_raw <- function(x, y, nThread = getOption("hutilscpp.nThread", 1L)) {
  .Call("C_or_raw", x, y, nThread,  PACKAGE = "hutilscpp")
}
HughParsonage/hutilscpp documentation built on March 1, 2025, 12:29 p.m.