R/utils.R
pipe_expr.Rd
Concatenate expressions in a single pipeline-flavor expression.
pipe_expr(exprs, pipe_str = "%>%")
(list of call) expressions to concatenate in a pipeline (%>%).
list
call
%>%
(character) the character which separates the expressions.
character
a call
pipe_expr( list( expr1 = substitute(df), expr2 = substitute(head) ) ) #> df %>% head