BinaryOperator<T> typedef
BinaryOperator<T> =
T Function(T a, T b)
A function that takes two values of type T and returns a value of type T.
Implementation
typedef BinaryOperator<T> = T Function(T a, T b);