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(L)

Classify into the left partition.

Right(R)

Classify into the right partition.