mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-24 02:36:59 +00:00
implement TrustedLen for Flatten/FlatMap if the U: IntoIterator == [T; N] This only works if arrays are passed directly instead of array iterators because we need to be sure that they have not been advanced before Flatten does its size calculation. resolves #87094