Skip to contents

Pipe operator

Usage

lhs %>% rhs

Arguments

lhs

A value passed into the right-hand side function.

rhs

A function call to which `lhs` is supplied as the first argument.

Value

The result of calling `rhs` with `lhs` as its first argument.