Skip to content

Commit

Permalink
doc: Suggest str::repeat over iter::repeat().take().collect()
Browse files Browse the repository at this point in the history
  • Loading branch information
tesuji authored Jul 10, 2024
1 parent 0c81f94 commit 3f38594
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions library/core/src/iter/sources/repeat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ use crate::num::NonZero;
///
/// Infinite iterators like `repeat()` are often used with adapters like
/// [`Iterator::take()`], in order to make them finite.
///
/// > Please prefer [`str::repeat()`] over 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
Expand Down

0 comments on commit 3f38594

Please sign in to comment.