pub trait BitAnd {
    type Value: BitSetLike;

    fn and(self) -> Self::Value;
}
Expand description

BitAnd is a helper method to & bitsets together resulting in a tree.

Required Associated Types

The combined bitsets.

Required Methods

Combines Self into a single BitSetLike through BitSetAnd.

Implementations on Foreign Types

This needs to be special cased

Implementors