Pipe an object forward into a function or call expression.
Usage
lhs %>% rhs
Arguments
lhs
The result you are piping.
rhs
Where you are piping the result to.
Details
Unlike the magrittr pipe, you must supply an actual function instead of just a function name. For example
mtcars %>% head will not work, but mtcars %>% head() will.