Diff of /R/utils-pipe.R [000000] .. [0f2269]

Switch to unified view

a b/R/utils-pipe.R
1
#' Pipe operator
2
#'
3
#' See \code{magrittr::\link[magrittr:pipe]{\%>\%}} for details.
4
#'
5
#' @name %>%
6
#' @rdname pipe
7
#' @keywords internal
8
#' @export
9
#' @importFrom magrittr %>%
10
#' @usage lhs \%>\% rhs
11
#' @param lhs A value or the magrittr placeholder.
12
#' @param rhs A function call using the magrittr semantics.
13
#' @return The result of calling `rhs(lhs)`.
14
NULL