Skip to content
Snippets Groups Projects
Commit 9ce1650a authored by dj44vuri's avatar dj44vuri
Browse files

added pipe operator

parent b1774cd0
No related branches found
No related tags found
No related merge requests found
#' Pipe operator
#'
#' See \code{magrittr::\link[magrittr:pipe]{\%>\%}} for details.
#'
#' @name %>%
#' @rdname pipe
#' @keywords internal
#' @export
#' @importFrom magrittr %>%
#' @usage lhs \%>\% rhs
#' @param lhs A value or the magrittr placeholder.
#' @param rhs A function call using the magrittr semantics.
#' @return The result of calling `rhs(lhs)`.
NULL
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment