Ross MacArthur
6a84995fae
Add function core::iter::chain
...
The addition of `core::iter::zip` (#82917 ) set a precedent for adding
plain functions for iterator adaptors. Adding `chain` makes it a little
easier to `chain` two iterators.
```
for (x, y) in chain(xs, ys) {}
// vs.
for (x, y) in xs.into_iter().chain(ys) {}
```
2024-06-04 10:51:05 +02:00
..
2024-01-17 12:00:27 -08:00
2024-01-11 15:04:48 +03:00
2024-02-21 20:15:52 +01:00
2024-02-07 16:46:28 +01:00
2024-06-04 10:51:05 +02:00
2024-01-21 06:38:35 +01:00
2024-06-02 12:58:07 -07:00
2024-02-21 20:15:52 +01:00
2024-01-02 15:34:37 -05:00
2024-02-15 08:09:42 +01:00
2024-01-02 15:34:37 -05:00
2024-01-11 15:04:48 +03:00
2023-12-10 10:56:22 +08:00
2024-01-11 15:04:48 +03:00
2024-05-01 22:19:11 -04:00
2024-06-04 10:51:05 +02:00
2024-02-07 10:42:01 +08:00
2024-05-29 09:34:16 -07:00
2024-02-15 08:09:42 +01:00
2024-01-11 15:04:48 +03:00
2024-05-29 09:34:16 -07:00
2024-05-15 13:51:16 -05:00
2023-11-26 08:50:39 -05:00
2024-05-15 23:39:33 -07:00
2024-04-24 15:27:47 -07:00
2024-01-24 14:24:57 +01:00
2024-02-21 20:15:52 +01:00