Type alias BiFunction<T, U, R>

BiFunction<T, U, R>: ((t, u) => R)

Type of function that takes a value of type T and returns a value of type U

Type Parameters

  • T

    The type of the first input to the function

  • U

    The type of the second input to the function

  • R

    The type of the output of the function

Type declaration

    • (t, u): R
    • Parameters

      Returns R

Generated using TypeDoc