Lifts the binary operation q over the hom X => _.
q
X => _
The lifted hom X => C.
X => C
const lifter = liftBinary<void>()((a: number) => (b: number) => a + b);expect(lifter(() => 1)(() => 2)()).toStrictEqual(3); Copy
const lifter = liftBinary<void>()((a: number) => (b: number) => a + b);expect(lifter(() => 1)(() => 2)()).toStrictEqual(3);
Lifts the binary operation
qover the homX => _.