blob: fd0b1d13db4ff91b7f836f72b7d5d88d958f6e1f [file] [log] [blame]
Marc Kupietzbb4f54c2023-10-19 21:22:44 +02001#' 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)`.
14NULL