rust-clippy/tests/ui/option_map_or_none.stderr

54 lines
2.1 KiB
Text
Raw Normal View History

2021-11-13 13:38:28 +00:00
error: called `map_or(None, ..)` on an `Option` value. This can be done more directly by calling `map(..)` instead
2021-11-19 07:17:17 +00:00
--> $DIR/option_map_or_none.rs:12:26
|
2021-11-15 17:53:35 +00:00
LL | let _: Option<i32> = opt.map_or(None, |x| Some(x + 1));
2021-11-15 17:06:31 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try using `map` instead: `opt.map(|x| x + 1)`
|
= note: `-D clippy::option-map-or-none` implied by `-D warnings`
2021-11-13 13:38:28 +00:00
error: called `map_or(None, ..)` on an `Option` value. This can be done more directly by calling `map(..)` instead
2021-11-19 07:17:17 +00:00
--> $DIR/option_map_or_none.rs:15:26
|
2021-11-15 17:53:35 +00:00
LL | let _: Option<i32> = opt.map_or(None, |x| {
2021-11-15 17:06:31 +00:00
| __________________________^
LL | | Some(x + 1)
LL | | });
| |_________________________^ help: try using `map` instead: `opt.map(|x| x + 1)`
2021-11-15 17:06:31 +00:00
error: called `map_or(None, ..)` on an `Option` value. This can be done more directly by calling `and_then(..)` instead
2021-11-19 07:17:17 +00:00
--> $DIR/option_map_or_none.rs:19:26
2021-11-15 06:47:57 +00:00
|
2021-11-15 17:53:35 +00:00
LL | let _: Option<i32> = opt.map_or(None, bar);
2021-11-15 06:47:57 +00:00
| ^^^^^^^^^^^^^^^^^^^^^ help: try using `and_then` instead: `opt.and_then(bar)`
2021-11-17 15:43:49 +00:00
error: called `map_or(None, ..)` on an `Option` value. This can be done more directly by calling `and_then(..)` instead
2021-11-19 07:17:17 +00:00
--> $DIR/option_map_or_none.rs:20:26
2021-11-17 15:43:49 +00:00
|
LL | let _: Option<i32> = opt.map_or(None, |x| {
| __________________________^
LL | | let offset = 0;
LL | | let height = x;
LL | | Some(offset + height)
LL | | });
| |______^
|
help: try using `and_then` instead
|
LL ~ let _: Option<i32> = opt.and_then(|x| {
LL + let offset = 0;
LL + let height = x;
LL + Some(offset + height)
LL ~ });
|
2021-11-19 07:17:17 +00:00
error: called `map_or(None, Some)` on a `Result` value. This can be done more directly by calling `ok()` instead
--> $DIR/option_map_or_none.rs:27:26
|
LL | let _: Option<i32> = r.map_or(None, Some);
| ^^^^^^^^^^^^^^^^^^^^ help: try using `ok` instead: `r.ok()`
|
= note: `-D clippy::result-map-or-into-option` implied by `-D warnings`
error: aborting due to 5 previous errors