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")
}

Try the hutilscpp package in your browser

Any scripts or data that you put into this service are public.

hutilscpp documentation built on Oct. 11, 2023, 9:06 a.m.