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

Classify into the left partition.

Classify into the right partition.