• Creates the product of two lists with f. It is useful to exhaust value patterns of combinations.

    Type Parameters

    • A

    • B

    • C

    Parameters

    • f: ((a) => ((b) => C))

      The function makes a product from two values.

        • (a): ((b) => C)
        • Parameters

          • a: A

          Returns ((b) => C)

            • (b): C
            • Parameters

              • b: B

              Returns C

    Returns ((xs) => ((ys) => List<C>))

    The list of products.

Generated using TypeDoc