BiFunction<T, U, R> typedef

BiFunction<T, U, R> = R Function(T first, U second)

Represents a function that accepts two arguments and produces a result.

Implementation

typedef BiFunction<T,U,R> = R Function(T first, U second);