pub trait ClauseIterable: Debug {
    type Item: Copy + Into<Lit>;

    fn items(&self) -> &[Self::Item];
}
Expand description

Anything that can be considered as a list of literals.

We use Into to have more flexibility for ClauseRef, which contains a slice of a union type rather than pure literals

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors