Marc Kupietz | bb4f54c | 2023-10-19 21:22:44 +0200 | [diff] [blame] | 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 |