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
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
kammce
changed the title
Function or object that determines the consumed byte count by a stream
Util to determine the bytes consumed by a stream
May 30, 2024
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:
See libhal-google#8 for the previous discussion.
The text was updated successfully, but these errors were encountered: