R/utils,connections.R

Defines functions all.equal.connection

#' @exportS3Method all.equal connection
all.equal.connection <- function(target, current, ...) {
  if (!identical(target, current)) {
    return("Connections differ")
  }
  TRUE
}

Try the parallelly package in your browser

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

parallelly documentation built on June 8, 2025, 10:47 a.m.