]> git.lizzy.rs Git - rust.git/commit
Split iterator adaptors into individual modules
authorWaffle <waffle.lapkin@gmail.com>
Wed, 7 Oct 2020 21:14:11 +0000 (00:14 +0300)
committerWaffle <waffle.lapkin@gmail.com>
Sat, 21 Nov 2020 23:39:16 +0000 (02:39 +0300)
commit773b73c66c653f66ae056cecf9798de0686ef4ad
tree5d28e004d9bb9742067bc0c8cb72bc4b1bb68e11
parent3adedb8f4c5bb71e9e8a21a047cf8ed121ce0e75
Split iterator adaptors into individual modules

This commit also makes fields of `Take` private. I have no idea why they
were `pub(super)` before.
21 files changed:
library/core/src/iter/adapters/cloned.rs [new file with mode: 0644]
library/core/src/iter/adapters/copied.rs [new file with mode: 0644]
library/core/src/iter/adapters/cycle.rs [new file with mode: 0644]
library/core/src/iter/adapters/enumerate.rs [new file with mode: 0644]
library/core/src/iter/adapters/filter.rs [new file with mode: 0644]
library/core/src/iter/adapters/filter_map.rs [new file with mode: 0644]
library/core/src/iter/adapters/flatten.rs
library/core/src/iter/adapters/fuse.rs
library/core/src/iter/adapters/inspect.rs [new file with mode: 0644]
library/core/src/iter/adapters/map.rs [new file with mode: 0644]
library/core/src/iter/adapters/map_while.rs [new file with mode: 0644]
library/core/src/iter/adapters/mod.rs
library/core/src/iter/adapters/peekable.rs [new file with mode: 0644]
library/core/src/iter/adapters/rev.rs [new file with mode: 0644]
library/core/src/iter/adapters/scan.rs [new file with mode: 0644]
library/core/src/iter/adapters/skip.rs [new file with mode: 0644]
library/core/src/iter/adapters/skip_while.rs [new file with mode: 0644]
library/core/src/iter/adapters/step_by.rs [new file with mode: 0644]
library/core/src/iter/adapters/take.rs [new file with mode: 0644]
library/core/src/iter/adapters/take_while.rs [new file with mode: 0644]
library/core/src/iter/adapters/zip.rs