.cstr_pipe {constructive}R Documentation

Insert a pipe between two calls

Description

Exported for custom constructor design.

Usage

.cstr_pipe(x, y, pipe, one_liner, indent = TRUE)

Arguments

x

A character vector. The code for the left hand side call.

y

A character vector. The code for the right hand side call.

pipe

A string. The pipe to use, "plus" is useful for ggplot code.

one_liner

A boolean. Whether to paste x, the pipe and y together

indent

A boolean. Whether to indent y on a same line (provided that x and y are strings and one liners themselves)

Value

A character vector

Examples

.cstr_pipe("iris", "head(2)", pipe = "magrittr", one_liner = FALSE)
.cstr_pipe("iris", "head(2)", pipe = "magrittr", one_liner = TRUE)

[Package constructive version 0.3.0 Index]