Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,4 @@ while let Some(response) = response_stream.next().await {
// ...
}
```

In its current implementation, it only buffers up to one element in the
scenario where the stream that requests the next item is not the one
that matches the predicate. In the future, this might be changed to be
configurable using a const generic parameter
`split_by` and `split_by_map` only buffer up to 1 element. Use `split_by_buffered` or `split_by_map_buffered` to customize the number of buffered elements.