Skip to content

Commit ae79ce3

Browse files
committed
std: Change String::truncate to panic less
The `Vec::truncate` method does not panic if the length argument is greater than the vector's current length, but `String::truncate` will indeed panic. This semantic difference can be a bit jarring (e.g. #32717), and after some discussion the libs team concluded that although this can technically be a breaking change it is almost undoubtedly not so in practice. This commit changes the semantics of `String::truncate` to be a noop if `new_len` is greater than the length of the current string. Closes #32717
1 parent 073a09f commit ae79ce3

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

src/libcollections/string.rs

+8-4
Original file line numberDiff line numberDiff line change
@@ -992,10 +992,12 @@ impl String {
992992

993993
/// Shortens this `String` to the specified length.
994994
///
995+
/// If `new_len` is greater than the string's current length, this has no
996+
/// effect.
997+
///
995998
/// # Panics
996999
///
997-
/// Panics if `new_len` > current length, or if `new_len` does not lie on a
998-
/// [`char`] boundary.
1000+
/// Panics if `new_len` does not lie on a [`char`] boundary.
9991001
///
10001002
/// [`char`]: ../../std/primitive.char.html
10011003
///
@@ -1013,8 +1015,10 @@ impl String {
10131015
#[inline]
10141016
#[stable(feature = "rust1", since = "1.0.0")]
10151017
pub fn truncate(&mut self, new_len: usize) {
1016-
assert!(self.is_char_boundary(new_len));
1017-
self.vec.truncate(new_len)
1018+
if new_len <= self.len() {
1019+
assert!(self.is_char_boundary(new_len));
1020+
self.vec.truncate(new_len)
1021+
}
10181022
}
10191023

10201024
/// Removes the last character from the string buffer and returns it.

src/libcollectionstest/string.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -248,10 +248,10 @@ fn test_str_truncate() {
248248
}
249249

250250
#[test]
251-
#[should_panic]
252251
fn test_str_truncate_invalid_len() {
253252
let mut s = String::from("12345");
254253
s.truncate(6);
254+
assert_eq!(s, "12345");
255255
}
256256

257257
#[test]

0 commit comments

Comments
 (0)