Inline str::repeat

This commit is contained in:
Kornel 2024-11-06 18:54:03 +00:00
parent 116fc31c5c
commit 5a855654de

View File

@ -531,6 +531,7 @@ impl str {
#[rustc_allow_incoherent_impl]
#[must_use]
#[stable(feature = "repeat_str", since = "1.16.0")]
#[inline]
pub fn repeat(&self, n: usize) -> String {
unsafe { String::from_utf8_unchecked(self.as_bytes().repeat(n)) }
}