export function juxt<T, A, B, C>(
    a: Fn<T, A>,
    b: Fn<T, B>,
    c: Fn<T, C>
): Fn<T, [A, B, C]>;