pub fn flip<I1: Interface, I2: Interface, O1: Interface, O2: Interface>(
    f: impl FnOnce(I1, I2) -> (O1, O2)
) -> impl FnOnce(I2, I1) -> (O2, O1)
Expand description

Flips a module’s input and output.