Skip to content

Commit

Permalink
Un-hide iter::repeat_n
Browse files Browse the repository at this point in the history
  • Loading branch information
scottmcm committed Jan 17, 2024
1 parent 6bf600b commit 807a437
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion library/core/src/iter/sources/repeat_n.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ use crate::num::NonZeroUsize;
/// ```
#[inline]
#[unstable(feature = "iter_repeat_n", issue = "104434")]
#[doc(hidden)] // waiting on ACP#120 to decide whether to expose publicly
pub fn repeat_n<T: Clone>(element: T, count: usize) -> RepeatN<T> {
let mut element = ManuallyDrop::new(element);

Expand Down

0 comments on commit 807a437

Please sign in to comment.