Function flipSecond3

  • Flips the first with the second parameters of a function with three arguments.

    Type Parameters

    • R

    • A

    • B

    • C

    Parameters

    • func: ((a: A, b: B, c: C) => R)

      The function whose parameters are to be flipped.

        • (a: A, b: B, c: C): R
        • Parameters

          • a: A
          • b: B
          • c: C

          Returns R

    Returns ((b: B, a: A, c: C) => R)

      • (b: B, a: A, c: C): R
      • Parameters

        • b: B
        • a: A
        • c: C

        Returns R

Generated using TypeDoc