summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/map_unwrap_or.stderr
blob: 54ddd1402e3df3aa05ec8b68c8664634d1718733 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
error: called `map(<f>).unwrap_or(<a>)` on an `Option` value
  --> $DIR/map_unwrap_or.rs:17:13
   |
LL |       let _ = opt.map(|x| x + 1)
   |  _____________^
LL | |         // Should lint even though this call is on a separate line.
LL | |         .unwrap_or(0);
   | |_____________________^
   |
   = note: `-D clippy::map-unwrap-or` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::map_unwrap_or)]`
help: use `map_or(<a>, <f>)` instead
   |
LL -     let _ = opt.map(|x| x + 1)
LL +     let _ = opt.map_or(0, |x| x + 1);
   |

error: called `map(<f>).unwrap_or(<a>)` on an `Option` value
  --> $DIR/map_unwrap_or.rs:21:13
   |
LL |       let _ = opt.map(|x| {
   |  _____________^
LL | |         x + 1
LL | |     }
LL | |     ).unwrap_or(0);
   | |__________________^
   |
help: use `map_or(<a>, <f>)` instead
   |
LL ~     let _ = opt.map_or(0, |x| {
LL |         x + 1
LL |     }
LL ~     );
   |

error: called `map(<f>).unwrap_or(<a>)` on an `Option` value
  --> $DIR/map_unwrap_or.rs:25:13
   |
LL |       let _ = opt.map(|x| x + 1)
   |  _____________^
LL | |         .unwrap_or({
LL | |             0
LL | |         });
   | |__________^
   |
help: use `map_or(<a>, <f>)` instead
   |
LL ~     let _ = opt.map_or({
LL +             0
LL ~         }, |x| x + 1);
   |

error: called `map(<f>).unwrap_or(None)` on an `Option` value
  --> $DIR/map_unwrap_or.rs:30:13
   |
LL |     let _ = opt.map(|x| Some(x + 1)).unwrap_or(None);
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: use `and_then(<f>)` instead
   |
LL -     let _ = opt.map(|x| Some(x + 1)).unwrap_or(None);
LL +     let _ = opt.and_then(|x| Some(x + 1));
   |

error: called `map(<f>).unwrap_or(None)` on an `Option` value
  --> $DIR/map_unwrap_or.rs:32:13
   |
LL |       let _ = opt.map(|x| {
   |  _____________^
LL | |         Some(x + 1)
LL | |     }
LL | |     ).unwrap_or(None);
   | |_____________________^
   |
help: use `and_then(<f>)` instead
   |
LL ~     let _ = opt.and_then(|x| {
LL |         Some(x + 1)
LL |     }
LL ~     );
   |

error: called `map(<f>).unwrap_or(None)` on an `Option` value
  --> $DIR/map_unwrap_or.rs:36:13
   |
LL |       let _ = opt
   |  _____________^
LL | |         .map(|x| Some(x + 1))
LL | |         .unwrap_or(None);
   | |________________________^
   |
help: use `and_then(<f>)` instead
   |
LL -         .map(|x| Some(x + 1))
LL +         .and_then(|x| Some(x + 1));
   |

error: called `map(<f>).unwrap_or(<a>)` on an `Option` value
  --> $DIR/map_unwrap_or.rs:47:13
   |
LL |     let _ = Some("prefix").map(|p| format!("{}.", p)).unwrap_or(id);
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: use `map_or(<a>, <f>)` instead
   |
LL -     let _ = Some("prefix").map(|p| format!("{}.", p)).unwrap_or(id);
LL +     let _ = Some("prefix").map_or(id, |p| format!("{}.", p));
   |

error: called `map(<f>).unwrap_or_else(<g>)` on an `Option` value
  --> $DIR/map_unwrap_or.rs:51:13
   |
LL |       let _ = opt.map(|x| {
   |  _____________^
LL | |         x + 1
LL | |     }
LL | |     ).unwrap_or_else(|| 0);
   | |__________________________^

error: called `map(<f>).unwrap_or_else(<g>)` on an `Option` value
  --> $DIR/map_unwrap_or.rs:55:13
   |
LL |       let _ = opt.map(|x| x + 1)
   |  _____________^
LL | |         .unwrap_or_else(||
LL | |             0
LL | |         );
   | |_________^

error: called `map(<f>).unwrap_or(false)` on an `Option` value
  --> $DIR/map_unwrap_or.rs:61:13
   |
LL |     let _ = opt.map(|x| x > 5).unwrap_or(false);
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: use `is_some_and(<f>)` instead
   |
LL -     let _ = opt.map(|x| x > 5).unwrap_or(false);
LL +     let _ = opt.is_some_and(|x| x > 5);
   |

error: called `map(<f>).unwrap_or_else(<g>)` on a `Result` value
  --> $DIR/map_unwrap_or.rs:71:13
   |
LL |       let _ = res.map(|x| {
   |  _____________^
LL | |         x + 1
LL | |     }
LL | |     ).unwrap_or_else(|_e| 0);
   | |____________________________^

error: called `map(<f>).unwrap_or_else(<g>)` on a `Result` value
  --> $DIR/map_unwrap_or.rs:75:13
   |
LL |       let _ = res.map(|x| x + 1)
   |  _____________^
LL | |         .unwrap_or_else(|_e| {
LL | |             0
LL | |         });
   | |__________^

error: called `map(<f>).unwrap_or_else(<g>)` on a `Result` value
  --> $DIR/map_unwrap_or.rs:99:13
   |
LL |     let _ = res.map(|x| x + 1).unwrap_or_else(|_e| 0);
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `res.map_or_else(|_e| 0, |x| x + 1)`

error: called `map(<f>).unwrap_or(<a>)` on an `Option` value
  --> $DIR/map_unwrap_or.rs:106:13
   |
LL |     let _ = opt.map(|x| x > 5).unwrap_or(false);
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: use `map_or(<a>, <f>)` instead
   |
LL -     let _ = opt.map(|x| x > 5).unwrap_or(false);
LL +     let _ = opt.map_or(false, |x| x > 5);
   |

error: called `map(<f>).unwrap_or(false)` on an `Option` value
  --> $DIR/map_unwrap_or.rs:113:13
   |
LL |     let _ = opt.map(|x| x > 5).unwrap_or(false);
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: use `is_some_and(<f>)` instead
   |
LL -     let _ = opt.map(|x| x > 5).unwrap_or(false);
LL +     let _ = opt.is_some_and(|x| x > 5);
   |

error: aborting due to 15 previous errors