[ea2224]: / R / utils-pipe.R

Download this file

19 lines (16 with data), 347 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
#' Pipe operator
#'
#' See \code{magrittr::\link[magrittr]{\%>\%}} for details.
#'
#' @name %>%
#' @rdname pipe
#' @keywords internal
#' @export
#' @importFrom magrittr %>%
#' @usage lhs \%>\% rhs
NULL
.attach_this <- function() { # nocov start
if (!"UCSCXenaTools" %in% (.packages())) {
attachNamespace("UCSCXenaTools")
} # nocov end
}