Function flipThird3

  • Flips the first with the third 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 ((c: C, a: A, b: B) => R)

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

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

        Returns R

Generated using TypeDoc