rust/library/core/src/iter
Matthias Krüger 95750ae439
Rollup merge of #89897 - jkugelman:must-use-core, r=joshtriplett
Add #[must_use] to remaining core functions

I've run out of compelling reasons to group functions together across crates so I'm just going to go module-by-module. This is everything remaining from the `core` crate.

Ignored by clippy for reasons unknown:

```rust
core::alloc::Layout   unsafe fn for_value_raw<T: ?Sized>(t: *const T) -> Self;
core::any             const fn type_name_of_val<T: ?Sized>(_val: &T) -> &'static str;
```

Ignored by clippy because of `mut`:

```rust
str   fn split_at_mut(&mut self, mid: usize) -> (&mut str, &mut str);
```

<del>
Ignored by clippy presumably because a caller might want `f` called for side effects. That seems like a bad usage of `map` to me.

```rust
core::cell::Ref<'b, T>   fn map<U: ?Sized, F>(orig: Ref<'b, T>, f: F) -> Ref<'b, T>;
core::cell::Ref<'b, T>   fn map_split<U: ?Sized, V: ?Sized, F>(orig: Ref<'b, T>, f: F) -> (Ref<'b, U>, Ref<'b, V>);
```
</del>

Parent issue: #89692

r? ```@joshtriplett```
2021-10-31 09:20:26 +01:00
..
adapters Rollup merge of #88789 - the8472:rm-zip-bound, r=JohnTitor 2021-10-20 04:35:13 +09:00
sources Add #[must_use] to remaining core functions 2021-10-30 18:21:29 -04:00
traits Tiny tweak to Iterator::unzip() doc comment example. 2021-10-19 00:03:51 +00:00
mod.rs Revert "Stabilize Iterator::intersperse()" 2021-10-07 10:39:36 -07:00
range.rs implement advance_(back_)_by on more iterators 2021-09-30 21:23:28 +02:00
sources.rs Split iterator sources into different modules 2020-11-22 02:39:21 +03:00