Skip to content

Commit fb2d0f5

Browse files
jkugelmanKugelman, John R
authored and
Kugelman, John R
committed
Add #[must_use] to remaining alloc functions
1 parent e1e9319 commit fb2d0f5

File tree

15 files changed

+78
-23
lines changed

15 files changed

+78
-23
lines changed

library/alloc/benches/btree/map.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ where
290290
let mut c = 0;
291291
for i in 0..BENCH_RANGE_SIZE {
292292
for j in i + 1..BENCH_RANGE_SIZE {
293-
black_box(map.range(f(i, j)));
293+
let _ = black_box(map.range(f(i, j)));
294294
c += 1;
295295
}
296296
}
@@ -322,7 +322,7 @@ fn bench_iter(b: &mut Bencher, repeats: i32, size: i32) {
322322
let map: BTreeMap<_, _> = (0..size).map(|i| (i, i)).collect();
323323
b.iter(|| {
324324
for _ in 0..repeats {
325-
black_box(map.iter());
325+
let _ = black_box(map.iter());
326326
}
327327
});
328328
}

library/alloc/src/collections/binary_heap.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -512,6 +512,7 @@ impl<T: Ord> BinaryHeap<T> {
512512
/// let vec = heap.into_sorted_vec();
513513
/// assert_eq!(vec, [1, 2, 3, 4, 5, 6, 7]);
514514
/// ```
515+
#[must_use = "`self` will be dropped if the result is not used"]
515516
#[stable(feature = "binary_heap_extras_15", since = "1.5.0")]
516517
pub fn into_sorted_vec(mut self) -> Vec<T> {
517518
let mut end = self.len();
@@ -850,7 +851,6 @@ impl<T> BinaryHeap<T> {
850851
///
851852
/// assert_eq!(heap.into_iter_sorted().take(2).collect::<Vec<_>>(), vec![5, 4]);
852853
/// ```
853-
#[must_use = "`self` will be dropped if the result is not used"]
854854
#[unstable(feature = "binary_heap_into_iter_sorted", issue = "59278")]
855855
pub fn into_iter_sorted(self) -> IntoIterSorted<T> {
856856
IntoIterSorted { inner: self }
@@ -877,6 +877,7 @@ impl<T> BinaryHeap<T> {
877877
/// # Time complexity
878878
///
879879
/// Cost is *O*(1) in the worst case.
880+
#[must_use]
880881
#[stable(feature = "rust1", since = "1.0.0")]
881882
pub fn peek(&self) -> Option<&T> {
882883
self.data.get(0)
@@ -894,6 +895,7 @@ impl<T> BinaryHeap<T> {
894895
/// assert!(heap.capacity() >= 100);
895896
/// heap.push(4);
896897
/// ```
898+
#[must_use]
897899
#[stable(feature = "rust1", since = "1.0.0")]
898900
pub fn capacity(&self) -> usize {
899901
self.data.capacity()
@@ -1203,6 +1205,7 @@ impl<T> Drop for Hole<'_, T> {
12031205
/// documentation for more.
12041206
///
12051207
/// [`iter`]: BinaryHeap::iter
1208+
#[must_use = "iterators are lazy and do nothing unless consumed"]
12061209
#[stable(feature = "rust1", since = "1.0.0")]
12071210
pub struct Iter<'a, T: 'a> {
12081211
iter: slice::Iter<'a, T>,
@@ -1337,6 +1340,7 @@ impl<I> AsIntoIter for IntoIter<I> {
13371340
}
13381341
}
13391342

1343+
#[must_use = "iterators are lazy and do nothing unless consumed"]
13401344
#[unstable(feature = "binary_heap_into_iter_sorted", issue = "59278")]
13411345
#[derive(Clone, Debug)]
13421346
pub struct IntoIterSorted<T> {

library/alloc/src/collections/btree/map.rs

+9-2
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,7 @@ where
288288
/// documentation for more.
289289
///
290290
/// [`iter`]: BTreeMap::iter
291+
#[must_use = "iterators are lazy and do nothing unless consumed"]
291292
#[stable(feature = "rust1", since = "1.0.0")]
292293
pub struct Iter<'a, K: 'a, V: 'a> {
293294
range: LazyLeafRange<marker::Immut<'a>, K, V>,
@@ -316,6 +317,7 @@ pub struct IterMut<'a, K: 'a, V: 'a> {
316317
_marker: PhantomData<&'a mut (K, V)>,
317318
}
318319

320+
#[must_use = "iterators are lazy and do nothing unless consumed"]
319321
#[stable(feature = "collection_debug", since = "1.17.0")]
320322
impl<K: fmt::Debug, V: fmt::Debug> fmt::Debug for IterMut<'_, K, V> {
321323
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
@@ -359,6 +361,7 @@ impl<K: fmt::Debug, V: fmt::Debug> fmt::Debug for IntoIter<K, V> {
359361
/// documentation for more.
360362
///
361363
/// [`keys`]: BTreeMap::keys
364+
#[must_use = "iterators are lazy and do nothing unless consumed"]
362365
#[stable(feature = "rust1", since = "1.0.0")]
363366
pub struct Keys<'a, K: 'a, V: 'a> {
364367
inner: Iter<'a, K, V>,
@@ -377,6 +380,7 @@ impl<K: fmt::Debug, V> fmt::Debug for Keys<'_, K, V> {
377380
/// documentation for more.
378381
///
379382
/// [`values`]: BTreeMap::values
383+
#[must_use = "iterators are lazy and do nothing unless consumed"]
380384
#[stable(feature = "rust1", since = "1.0.0")]
381385
pub struct Values<'a, K: 'a, V: 'a> {
382386
inner: Iter<'a, K, V>,
@@ -395,6 +399,7 @@ impl<K, V: fmt::Debug> fmt::Debug for Values<'_, K, V> {
395399
/// documentation for more.
396400
///
397401
/// [`values_mut`]: BTreeMap::values_mut
402+
#[must_use = "iterators are lazy and do nothing unless consumed"]
398403
#[stable(feature = "map_values_mut", since = "1.10.0")]
399404
pub struct ValuesMut<'a, K: 'a, V: 'a> {
400405
inner: IterMut<'a, K, V>,
@@ -413,6 +418,7 @@ impl<K, V: fmt::Debug> fmt::Debug for ValuesMut<'_, K, V> {
413418
/// See its documentation for more.
414419
///
415420
/// [`into_keys`]: BTreeMap::into_keys
421+
#[must_use = "iterators are lazy and do nothing unless consumed"]
416422
#[stable(feature = "map_into_keys_values", since = "1.54.0")]
417423
pub struct IntoKeys<K, V> {
418424
inner: IntoIter<K, V>,
@@ -431,6 +437,7 @@ impl<K: fmt::Debug, V> fmt::Debug for IntoKeys<K, V> {
431437
/// See its documentation for more.
432438
///
433439
/// [`into_values`]: BTreeMap::into_values
440+
#[must_use = "iterators are lazy and do nothing unless consumed"]
434441
#[stable(feature = "map_into_keys_values", since = "1.54.0")]
435442
pub struct IntoValues<K, V> {
436443
inner: IntoIter<K, V>,
@@ -449,6 +456,7 @@ impl<K, V: fmt::Debug> fmt::Debug for IntoValues<K, V> {
449456
/// documentation for more.
450457
///
451458
/// [`range`]: BTreeMap::range
459+
#[must_use = "iterators are lazy and do nothing unless consumed"]
452460
#[stable(feature = "btree_range", since = "1.17.0")]
453461
pub struct Range<'a, K: 'a, V: 'a> {
454462
inner: LeafRange<marker::Immut<'a>, K, V>,
@@ -467,6 +475,7 @@ impl<K: fmt::Debug, V: fmt::Debug> fmt::Debug for Range<'_, K, V> {
467475
/// documentation for more.
468476
///
469477
/// [`range_mut`]: BTreeMap::range_mut
478+
#[must_use = "iterators are lazy and do nothing unless consumed"]
470479
#[stable(feature = "btree_range", since = "1.17.0")]
471480
pub struct RangeMut<'a, K: 'a, V: 'a> {
472481
inner: LeafRange<marker::ValMut<'a>, K, V>,
@@ -1265,7 +1274,6 @@ impl<K, V> BTreeMap<K, V> {
12651274
/// assert_eq!(keys, [1, 2]);
12661275
/// ```
12671276
#[inline]
1268-
#[must_use = "`self` will be dropped if the result is not used"]
12691277
#[stable(feature = "map_into_keys_values", since = "1.54.0")]
12701278
pub fn into_keys(self) -> IntoKeys<K, V> {
12711279
IntoKeys { inner: self.into_iter() }
@@ -1288,7 +1296,6 @@ impl<K, V> BTreeMap<K, V> {
12881296
/// assert_eq!(values, ["hello", "goodbye"]);
12891297
/// ```
12901298
#[inline]
1291-
#[must_use = "`self` will be dropped if the result is not used"]
12921299
#[stable(feature = "map_into_keys_values", since = "1.54.0")]
12931300
pub fn into_values(self) -> IntoValues<K, V> {
12941301
IntoValues { inner: self.into_iter() }

library/alloc/src/collections/btree/map/entry.rs

+2
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,7 @@ impl<'a, K: Ord, V> OccupiedEntry<'a, K, V> {
347347
/// map.entry("poneyland").or_insert(12);
348348
/// assert_eq!(map.entry("poneyland").key(), &"poneyland");
349349
/// ```
350+
#[must_use]
350351
#[stable(feature = "map_entry_keys", since = "1.10.0")]
351352
pub fn key(&self) -> &K {
352353
self.handle.reborrow().into_kv().0
@@ -391,6 +392,7 @@ impl<'a, K: Ord, V> OccupiedEntry<'a, K, V> {
391392
/// assert_eq!(o.get(), &12);
392393
/// }
393394
/// ```
395+
#[must_use]
394396
#[stable(feature = "rust1", since = "1.0.0")]
395397
pub fn get(&self) -> &V {
396398
self.handle.reborrow().into_kv().1

library/alloc/src/collections/btree/map/tests.rs

+13-13
Original file line numberDiff line numberDiff line change
@@ -744,35 +744,35 @@ fn test_range_equal_empty_cases() {
744744
#[should_panic]
745745
fn test_range_equal_excluded() {
746746
let map: BTreeMap<_, _> = (0..5).map(|i| (i, i)).collect();
747-
map.range((Excluded(2), Excluded(2)));
747+
let _ = map.range((Excluded(2), Excluded(2)));
748748
}
749749

750750
#[test]
751751
#[should_panic]
752752
fn test_range_backwards_1() {
753753
let map: BTreeMap<_, _> = (0..5).map(|i| (i, i)).collect();
754-
map.range((Included(3), Included(2)));
754+
let _ = map.range((Included(3), Included(2)));
755755
}
756756

757757
#[test]
758758
#[should_panic]
759759
fn test_range_backwards_2() {
760760
let map: BTreeMap<_, _> = (0..5).map(|i| (i, i)).collect();
761-
map.range((Included(3), Excluded(2)));
761+
let _ = map.range((Included(3), Excluded(2)));
762762
}
763763

764764
#[test]
765765
#[should_panic]
766766
fn test_range_backwards_3() {
767767
let map: BTreeMap<_, _> = (0..5).map(|i| (i, i)).collect();
768-
map.range((Excluded(3), Included(2)));
768+
let _ = map.range((Excluded(3), Included(2)));
769769
}
770770

771771
#[test]
772772
#[should_panic]
773773
fn test_range_backwards_4() {
774774
let map: BTreeMap<_, _> = (0..5).map(|i| (i, i)).collect();
775-
map.range((Excluded(3), Excluded(2)));
775+
let _ = map.range((Excluded(3), Excluded(2)));
776776
}
777777

778778
#[test]
@@ -783,7 +783,7 @@ fn test_range_finding_ill_order_in_map() {
783783
// we cause a different panic than `test_range_backwards_1` does.
784784
// A more refined `should_panic` would be welcome.
785785
if Cyclic3::C < Cyclic3::A {
786-
map.range(Cyclic3::C..=Cyclic3::A);
786+
let _ = map.range(Cyclic3::C..=Cyclic3::A);
787787
}
788788
}
789789

@@ -824,7 +824,7 @@ fn test_range_finding_ill_order_in_range_ord() {
824824
}
825825

826826
let map = (0..12).map(|i| (CompositeKey(i, EvilTwin(i)), ())).collect::<BTreeMap<_, _>>();
827-
map.range(EvilTwin(5)..=EvilTwin(7));
827+
let _ = map.range(EvilTwin(5)..=EvilTwin(7));
828828
}
829829

830830
#[test]
@@ -1239,32 +1239,32 @@ fn test_borrow() {
12391239

12401240
#[allow(dead_code)]
12411241
fn get<T: Ord>(v: &BTreeMap<Box<T>, ()>, t: &T) {
1242-
v.get(t);
1242+
let _ = v.get(t);
12431243
}
12441244

12451245
#[allow(dead_code)]
12461246
fn get_mut<T: Ord>(v: &mut BTreeMap<Box<T>, ()>, t: &T) {
1247-
v.get_mut(t);
1247+
let _ = v.get_mut(t);
12481248
}
12491249

12501250
#[allow(dead_code)]
12511251
fn get_key_value<T: Ord>(v: &BTreeMap<Box<T>, ()>, t: &T) {
1252-
v.get_key_value(t);
1252+
let _ = v.get_key_value(t);
12531253
}
12541254

12551255
#[allow(dead_code)]
12561256
fn contains_key<T: Ord>(v: &BTreeMap<Box<T>, ()>, t: &T) {
1257-
v.contains_key(t);
1257+
let _ = v.contains_key(t);
12581258
}
12591259

12601260
#[allow(dead_code)]
12611261
fn range<T: Ord>(v: &BTreeMap<Box<T>, ()>, t: T) {
1262-
v.range(t..);
1262+
let _ = v.range(t..);
12631263
}
12641264

12651265
#[allow(dead_code)]
12661266
fn range_mut<T: Ord>(v: &mut BTreeMap<Box<T>, ()>, t: T) {
1267-
v.range_mut(t..);
1267+
let _ = v.range_mut(t..);
12681268
}
12691269

12701270
#[allow(dead_code)]

library/alloc/src/collections/btree/set.rs

+4
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ impl<T: Clone> Clone for BTreeSet<T> {
9292
/// See its documentation for more.
9393
///
9494
/// [`iter`]: BTreeSet::iter
95+
#[must_use = "iterators are lazy and do nothing unless consumed"]
9596
#[stable(feature = "rust1", since = "1.0.0")]
9697
pub struct Iter<'a, T: 'a> {
9798
iter: Keys<'a, T, ()>,
@@ -123,6 +124,7 @@ pub struct IntoIter<T> {
123124
/// See its documentation for more.
124125
///
125126
/// [`range`]: BTreeSet::range
127+
#[must_use = "iterators are lazy and do nothing unless consumed"]
126128
#[derive(Debug)]
127129
#[stable(feature = "btree_range", since = "1.17.0")]
128130
pub struct Range<'a, T: 'a> {
@@ -668,6 +670,7 @@ impl<T> BTreeSet<T> {
668670
/// set.insert(2);
669671
/// assert_eq!(set.first(), Some(&1));
670672
/// ```
673+
#[must_use]
671674
#[unstable(feature = "map_first_last", issue = "62924")]
672675
pub fn first(&self) -> Option<&T>
673676
where
@@ -694,6 +697,7 @@ impl<T> BTreeSet<T> {
694697
/// set.insert(2);
695698
/// assert_eq!(set.last(), Some(&2));
696699
/// ```
700+
#[must_use]
697701
#[unstable(feature = "map_first_last", issue = "62924")]
698702
pub fn last(&self) -> Option<&T>
699703
where

library/alloc/src/collections/btree/set/tests.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -613,8 +613,8 @@ fn test_ord_absence() {
613613
set.is_empty();
614614
set.len();
615615
set.clear();
616-
set.iter();
617-
set.into_iter();
616+
let _ = set.iter();
617+
let _ = set.into_iter();
618618
}
619619

620620
fn set_debug<K: Debug>(set: BTreeSet<K>) {

0 commit comments

Comments
 (0)