rust/library/core/tests/iter/adapters
The8472 8dd903cc77 implement ConstSizeIntoIterator for &[T;N] in addition to [T;N]
Due to #20400 the corresponding TrustedLen impls need a helper trait
instead of directly adding `Item = &[T;N]` bounds.
Since TrustedLen is a public trait this in turn means
the helper trait needs to be public. Since it's just a workaround
for a compiler deficit it's marked hidden, unstable and unsafe.
2021-07-16 20:38:42 +02:00
..
chain.rs Remove Option::{unwrap_none, expect_none}. 2021-03-14 12:54:34 +01:00
cloned.rs
copied.rs
cycle.rs
enumerate.rs library/core/tests/iter rearrange & add back missed doc comments 2021-01-22 17:57:07 -05:00
filter_map.rs library/core/tests/iter rearrange & add back missed doc comments 2021-01-22 17:57:07 -05:00
filter.rs library/core/tests/iter rearrange & add back missed doc comments 2021-01-22 17:57:07 -05:00
flat_map.rs library/core/tests/iter rearrange & add back missed doc comments 2021-01-22 17:57:07 -05:00
flatten.rs implement ConstSizeIntoIterator for &[T;N] in addition to [T;N] 2021-07-16 20:38:42 +02:00
fuse.rs library/core/tests/iter rearrange & add back missed doc comments 2021-01-22 17:57:07 -05:00
inspect.rs
intersperse.rs Fix core tests 2021-03-03 11:22:49 +01:00
map.rs library/core/tests/iter rearrange & add back missed doc comments 2021-01-22 17:57:07 -05:00
mod.rs library/core/tests/iter rearrange & add back missed doc comments 2021-01-22 17:57:07 -05:00
peekable.rs
scan.rs
skip_while.rs
skip.rs
step_by.rs
take_while.rs
take.rs
zip.rs disable test on platforms that don't support unwinding 2021-06-20 12:20:05 +02:00