Enum itertools::Partition
[−]
[src]
pub enum Partition<L, R> { Left(L), Right(R), }
Classifies the result of the .partition_map()
closure into a
partition.
Variants
Left | Classify into the left partition. | |
Right | Classify into the right partition. |