pub trait HPair {
type Out;
// Required method
fn hpair(self) -> Self::Out;
}Expand description
Higher order pairing.
A higher order pairing is used pair up components of a pair of data structures.
This is used before binary higher order maps of the type f : (T, T) -> U.