Skip to contents

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

if (FALSE) {

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

}