Uses of Interface
cern.colt.function.IntIntFunction
-
Packages that use IntIntFunction Package Description cern.jet.math Tools for basic and advanced mathematics: Arithmetics and Algebra, Polynomials and Chebyshev series, Bessel and Airy functions, Function Objects for generic function evaluation, etc. -
-
Uses of IntIntFunction in cern.jet.math
Fields in cern.jet.math declared as IntIntFunction Modifier and Type Field Description static IntIntFunctionIntFunctions. andFunction that returns a & b.static IntIntFunctionIntFunctions. compareFunction that returns a < b ? -1 : a > b ? 1 : 0.static IntIntFunctionIntFunctions. divFunction that returns a / b.static IntIntFunctionIntFunctions. equalsFunction that returns a == b ? 1 : 0.static IntIntFunctionIntFunctions. maxFunction that returns Math.max(a,b).static IntIntFunctionIntFunctions. minFunction that returns Math.min(a,b).static IntIntFunctionIntFunctions. minusFunction that returns a - b.static IntIntFunctionIntFunctions. modFunction that returns a % b.static IntIntFunctionIntFunctions. multFunction that returns a * b.static IntIntFunctionIntFunctions. orFunction that returns a | b.static IntIntFunctionIntFunctions. plusFunction that returns a + b.static IntIntFunctionIntFunctions. powFunction that returns (int) Math.pow(a,b).static IntIntFunctionIntFunctions. shiftLeftFunction that returns a << b.static IntIntFunctionIntFunctions. shiftRightSignedFunction that returns a >> b.static IntIntFunctionIntFunctions. shiftRightUnsignedFunction that returns a >>> b.static IntIntFunctionIntFunctions. xorFunction that returns a ^ b.Methods in cern.jet.math that return IntIntFunction Modifier and Type Method Description static IntIntFunctionIntFunctions. chain(IntFunction g, IntIntFunction h)Constructs the function g( h(a,b) ).static IntIntFunctionIntFunctions. chain(IntIntFunction f, IntFunction g, IntFunction h)Constructs the function f( g(a), h(b) ).static IntIntFunctionIntFunctions. swapArgs(IntIntFunction function)Constructs a function that returns function.apply(b,a), i.e.Methods in cern.jet.math with parameters of type IntIntFunction Modifier and Type Method Description static IntFunctionIntFunctions. bindArg1(IntIntFunction function, int c)Constructs a unary function from a binary function with the first operand (argument) fixed to the given constant c.static IntFunctionIntFunctions. bindArg2(IntIntFunction function, int c)Constructs a unary function from a binary function with the second operand (argument) fixed to the given constant c.static IntIntFunctionIntFunctions. chain(IntFunction g, IntIntFunction h)Constructs the function g( h(a,b) ).static IntIntFunctionIntFunctions. chain(IntIntFunction f, IntFunction g, IntFunction h)Constructs the function f( g(a), h(b) ).static IntIntFunctionIntFunctions. swapArgs(IntIntFunction function)Constructs a function that returns function.apply(b,a), i.e.
-