export function transduce<A, B, C>(
    tx: TxLike<A, B>,
    rfn: Reducer<B, C>,
    xs: Iterable<A>
): C;