Primitive Type Specializations of BiFunction – Functional-Style Programming
Primitive Type Specializations of BiFunction<T, U, R> Table 13.8 shows that the BiFunction<T, U, R> interface has three primitive type twoarity generic specializations to int, long, and double, but they do not define any default methods for creating compound functions. The specializations are named ToPrimBiFunction<T, U>, where Prim is either Int, Long, or Double. These … Read morePrimitive Type Specializations of BiFunction – Functional-Style Programming