Skip to content

Commit

Permalink
Unrolled build for rust-lang#127592
Browse files Browse the repository at this point in the history
Rollup merge of rust-lang#127592 - tesuji:patch-1, r=Mark-Simulacrum

doc: Suggest `str::repeat` over `iter::repeat().take().collect()`

r? libs
  • Loading branch information
rust-timer authored Jul 14, 2024
2 parents 0968298 + 193767e commit 25b2b31
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions library/core/src/iter/sources/repeat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,15 @@ use crate::num::NonZero;
/// Infinite iterators like `repeat()` are often used with adapters like
/// [`Iterator::take()`], in order to make them finite.
///
/// Use [`str::repeat()`] instead of this function if you just want to repeat
/// a char/string `n`th times.
///
/// If the element type of the iterator you need does not implement `Clone`,
/// or if you do not want to keep the repeated element in memory, you can
/// instead use the [`repeat_with()`] function.
///
/// [`repeat_with()`]: crate::iter::repeat_with
/// [`str::repeat()`]: ../../std/primitive.str.html#method.repeat
///
/// # Examples
///
Expand Down

0 comments on commit 25b2b31

Please sign in to comment.