mirror of
https://github.com/ryantimpe/brickr.git
synced 2026-01-05 05:09:50 -06:00
15 lines
264 B
R
15 lines
264 B
R
#' Pipe operator
|
|
#'
|
|
#' See \code{magrittr::\link[magrittr:pipe]{\%>\%}} for details.
|
|
#'
|
|
#' @name %>%
|
|
#' @rdname pipe
|
|
#' @keywords internal
|
|
#' @export
|
|
#' @importFrom magrittr %>%
|
|
#' @usage lhs \%>\% rhs
|
|
NULL
|
|
|
|
"%||%" <- function(a, b) {
|
|
if (!is.null(a)) a else b
|
|
} |