Description Usage Arguments Details
A pipe for stream piping
Apply function fn
to each chunk of data
Filter a stream based on a boolean function, only passing data that results in a true condition
Reduce stream data into one chunk via the iterative application of function fn
to an accumulator and
each chunk
See also base::Reduce
Map stream, but for side-effects
todo
1 2 3 4 5 6 7 8 9 10 11 12 13 | lhs %|>% rhs
map_stream(fn)
filter_stream(fn)
reduce_stream(fn, base_value = 0)
walk_stream(fn)
collect_stream()
batch_stream(size)
|
fn |
function applied to each chunk of stream that returns a boolean value |
Form of reduce stream where all data is appended to a list before being emitted.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.