public interface IntBinaryOperator { public int applyAsInt(int left, int right); The method name seems quite verbose; any reason why it's not simply "apply"? Same for Long, Double, and Unary. Zhong Yu