about summary refs log tree commit diff
path: root/library/core/src/async_iter
AgeCommit message (Collapse)AuthorLines
2025-07-08clippy fix: markdown indentation for indented items after line breakMarijn Schouten-5/+5
2024-09-22Reformat using the new identifier sorting from rustfmtMichael Goulet-1/+1
2024-07-29Reformat `use` declarations.Nicholas Nethercote-2/+1
The previous commit updated `rustfmt.toml` appropriately. This commit is the outcome of running `x fmt --all` with the new formatting options.
2024-07-26Fix doc nitsJohn Arundel-2/+2
Many tiny changes to stdlib doc comments to make them consistent (for example "Returns foo", rather than "Return foo", per RFC1574), adding missing periods, paragraph breaks, backticks for monospace style, and other minor nits. https://github.com/rust-lang/rfcs/blob/master/text/1574-more-api-documentation-conventions.md#appendix-a-full-conventions-text
2024-04-05Hide async_gen_internals from standard library documentationDavid Tolnay-0/+3
2024-02-08Step all bootstrap cfgs forwardMark Rousskov-2/+2
This also takes care of other bootstrap-related changes.
2023-12-22Rollup merge of #119222 - eholk:into-async-iterator, r=compiler-errors,dtolnayMichael Goulet-1/+24
Add `IntoAsyncIterator` This introduces the `IntoAsyncIterator` trait and uses it in the desugaring of the unstable `for await` loop syntax. This is mostly added for symmetry with `Iterator` and `IntoIterator`. r? `@compiler-errors` cc `@rust-lang/libs-api,` `@rust-lang/wg-async`
2023-12-23Auto merge of #119211 - rust-lang:pa-master-1.77, r=Mark-Simulacrumbors-4/+4
Bump stage0 to 1.76 beta r? `@Mark-Simulacrum`
2023-12-22Use `IntoAsyncIterator` in `for await` loop desugaringEric Holk-0/+1
2023-12-22Add IntoAsyncIteratorEric Holk-1/+23
2023-12-22update cfg(bootstrap)sPietro Albini-4/+4
2023-12-19Desugar for await loopsEric Holk-0/+1
2023-12-08Implement `async gen` blocksMichael Goulet-0/+25
2022-10-29use consistent terminologyTshepang Mbambo-1/+1
I did not see other traits using the "interface" word
2022-03-15Add Stream alias for AsyncIteratorMichael Goulet-0/+1
2022-02-03Move `{core,std}::stream::Stream` to `{core,std}::async_iter::AsyncIterator`.Charles Lew-0/+276