Skip to content

Commit

Permalink
core: add tracking issue for array::repeat
Browse files Browse the repository at this point in the history
  • Loading branch information
joboet committed Jun 19, 2024
1 parent 5ddeaca commit dd7c901
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/array/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ pub use iter::IntoIter;
/// assert_eq!(strings, ["Hello there!", "Hello there!"]);
/// ```
#[inline]
#[unstable(feature = "array_repeat", issue = "none")]
#[unstable(feature = "array_repeat", issue = "126695")]
pub fn repeat<T: Clone, const N: usize>(val: T) -> [T; N] {
from_trusted_iterator(repeat_n(val, N))
}
Expand Down

0 comments on commit dd7c901

Please sign in to comment.