pub trait ExhaustiveDependentPairsYsGenerator<X: Clone, Y, J: Iterator<Item = Y>> {
// Required method
fn get_ys(&self, x: &X) -> J;
}
Expand description
A trait used by dependent-pairs structs.
Given a reference to an x
, produces an iterator of ys
.