R/length.r

Defines functions length.stack length.queue length.deque

#' @useDynLib dequer R_deque_length
#' @export
length.deque <- function(x)
{
  .Call(R_deque_length, x)
}

#' @export
length.queue <- function(x)
{
  .Call(R_deque_length, x)
}

#' @export
length.stack <- function(x)
{
  .Call(R_deque_length, x)
}

Try the dequer package in your browser

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

dequer documentation built on March 18, 2022, 5:45 p.m.