R/rbind.R

Defines functions rbind_dibble rbind.tbl_ddf rbind.ddf_col

#' @export
rbind.ddf_col <- function(..., deparse.level = 1) {
  rbind_dibble(...)
}

#' @export
rbind.tbl_ddf <- function(..., deparse.level = 1) {
  rbind_dibble(...)
}

rbind_dibble <- function(...) {
  args <- list2(...)
  purrr::reduce(args, rows_insert)
}

Try the dibble package in your browser

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

dibble documentation built on April 4, 2025, 6:07 a.m.