Rollup merge of #136967 - DaniPopes:io-repeat-fill, r=joboet

Use `slice::fill` in `io::Repeat` implementation

Use the existing `fill` methods on slices instead of manually writing the fill loop.
This commit is contained in:
Matthias Krüger
2025-02-14 16:23:32 +01:00
committed by GitHub
2 changed files with 11 additions and 18 deletions

View File

@@ -302,6 +302,7 @@
#![feature(link_cfg)]
#![feature(linkage)]
#![feature(macro_metavar_expr_concat)]
#![feature(maybe_uninit_fill)]
#![feature(min_specialization)]
#![feature(must_not_suspend)]
#![feature(needs_panic_runtime)]