@FunctionalInterface public interface IntBinaryOperator
Modifier and Type | Method and Description |
---|---|
static IntBinaryOperator |
affine(int a) |
int |
applyAsInt(int left,
int right) |
static IntBinaryOperator |
convex(int a) |
static IntBinaryOperator |
linear(int a,
int b) |
static IntBinaryOperator |
max() |
static IntBinaryOperator |
min() |
static IntBinaryOperator |
product() |
static IntBinaryOperator |
sum() |
static final int test
static final Integer test2
int applyAsInt(int left, int right)
static IntBinaryOperator sum()
static IntBinaryOperator product()
static IntBinaryOperator max()
static IntBinaryOperator min()
static IntBinaryOperator linear(int a, int b)
static IntBinaryOperator affine(int a)
static IntBinaryOperator convex(int a)