R/divmod.R

Defines functions div divmod

# Exported for testing

divmod <- function(x, y) {
  .Call(warp_divmod, x, y)
}

div <- function(x, y) {
  .Call(warp_div, x, y)
}

Try the warp package in your browser

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

warp documentation built on Nov. 3, 2023, 1:07 a.m.