You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 27, 2024. It is now read-only.
Streams return the amount of data remaining, but do not give back information about how many bytes were consumed by the pipeline. This information is helpful as it can be used to shovel the data that was consumed into other parallel pipelines.
Currently:
auto remaining = input | fill | find | parse<unsigned>;
// We get how much is left of input, but we don't know how much of input was consumed by the pipeline