%>>% {parsel}R Documentation

pipe-like operator that passes the output of lhs to the prev argument of rhs to paste together a scraper function in sequence.

Description

pipe-like operator that passes the output of lhs to the prev argument of rhs to paste together a scraper function in sequence.

Usage

lhs %>>% rhs

Arguments

lhs

a parsel constructor function call

rhs

a parsel constructor function call that should accept lhs as its prev argument

Value

the output of rhs evaluated with lhs as the prev argument

Examples

## Not run: 

#paste together the go and goback output in sequence
go("https://www.wikipedia.org/") %>>%
goback()


## End(Not run)

[Package parsel version 0.3.0 Index]