-
Notifications
You must be signed in to change notification settings - Fork 12.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tracking Issue for BufRead::skip_until
#111735
Comments
Any updates? Just stumbled into a use-case for this and can't use nightly. |
@rustbot ping libs Shall we FCP? |
@rust-lang/libs-api: https://doc.rust-lang.org/nightly/std/io/trait.BufRead.html#method.skip_until |
Team member @dtolnay has proposed to merge this. The next step is review by the rest of the tagged team members: No concerns currently listed. Once a majority of reviewers approve (and at most 2 approvals are outstanding), this will enter its final comment period. If you spot a major issue that hasn't been raised at any point in this process, please speak up! See this document for info about what commands tagged team members can give me. |
🔔 This is now entering its final comment period, as per the review above. 🔔 |
The final comment period, with a disposition to merge, as per the review above, is now complete. As the automated representative of the governance process, I would like to thank the author for their work and everyone else who contributed. This will be merged soon. |
Rollup merge of rust-lang#131267 - okaneco:bufread_skip_until, r=tgross35 Stabilize `BufRead::skip_until` FCP completed rust-lang#111735 (comment) Closes rust-lang#111735
Feature gate:
#![feature(bufread_skip_until)]
This is a tracking issue for
BufRead::skip_until
, which is similar toBufRead::read_until
but doesn't write data to an output buffer; it simply skips past it.This is useful when, for example, reading a binary file format but wanting to skip some data, like a NUL-terminated string.
Public API
Steps / History
BufRead::skip_until
#98943Unresolved Questions
Footnotes
https://std-dev-guide.rust-lang.org/feature-lifecycle/stabilization.html ↩
The text was updated successfully, but these errors were encountered: