Skip to content

Commit 5d37ba1

Browse files
committed
mark std::str::replacen and std::str::replace as #[must_use].
1 parent 4640615 commit 5d37ba1

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/liballoc/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@
9696
#![feature(dropck_eyepatch)]
9797
#![feature(exact_size_is_empty)]
9898
#![feature(fmt_internals)]
99+
#![feature(fn_must_use)]
99100
#![feature(from_ref)]
100101
#![feature(fundamental)]
101102
#![feature(lang_items)]

src/liballoc/str.rs

+2
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,7 @@ impl str {
207207
/// let s = "this is old";
208208
/// assert_eq!(s, s.replace("cookie monster", "little lamb"));
209209
/// ```
210+
#[must_use]
210211
#[stable(feature = "rust1", since = "1.0.0")]
211212
#[inline]
212213
pub fn replace<'a, P: Pattern<'a>>(&'a self, from: P, to: &str) -> String {
@@ -246,6 +247,7 @@ impl str {
246247
/// let s = "this is old";
247248
/// assert_eq!(s, s.replacen("cookie monster", "little lamb", 10));
248249
/// ```
250+
#[must_use]
249251
#[stable(feature = "str_replacen", since = "1.16.0")]
250252
pub fn replacen<'a, P: Pattern<'a>>(&'a self, pat: P, to: &str, count: usize) -> String {
251253
// Hope to reduce the times of re-allocation

0 commit comments

Comments
 (0)