Documentation
consts :: a -> b -> a <-> b Source #
Bidirectional constant function (not a true bijection).
const :: a -> () <-> a Source #
Convert between ()
and a constant (not a true bijection).
flip :: (a -> b -> c) <-> (b -> a -> c) Source #
flip
the order of the first two arguments of a function.