We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
iter::repeat_n
1 parent 6bf600b commit 807a437Copy full SHA for 807a437
library/core/src/iter/sources/repeat_n.rs
@@ -59,7 +59,6 @@ use crate::num::NonZeroUsize;
59
/// ```
60
#[inline]
61
#[unstable(feature = "iter_repeat_n", issue = "104434")]
62
-#[doc(hidden)] // waiting on ACP#120 to decide whether to expose publicly
63
pub fn repeat_n<T: Clone>(element: T, count: usize) -> RepeatN<T> {
64
let mut element = ManuallyDrop::new(element);
65
0 commit comments