Colt 1.0.1

Uses of Interface
cern.colt.function.IntIntFunction

Packages that use IntIntFunction
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
static IntIntFunction and
          Function that returns a & b.
static IntIntFunction compare
          Function that returns a < b ? -1 : a > b ? 1 : 0.
static IntIntFunction div
          Function that returns a / b.
static IntIntFunction equals
          Function that returns a == b ? 1 : 0.
static IntIntFunction max
          Function that returns Math.max(a,b).
static IntIntFunction min
          Function that returns Math.min(a,b).
static IntIntFunction minus
          Function that returns a - b.
static IntIntFunction mod
          Function that returns a % b.
static IntIntFunction mult
          Function that returns a * b.
static IntIntFunction or
          Function that returns a | b.
static IntIntFunction plus
          Function that returns a + b.
static IntIntFunction pow
          Function that returns (int) Math.pow(a,b).
static IntIntFunction shiftLeft
          Function that returns a << b.
static IntIntFunction shiftRightSigned
          Function that returns a >> b.
static IntIntFunction shiftRightUnsigned
          Function that returns a >>> b.
static IntIntFunction xor
          Function that returns a ^ b.
 

Methods in cern.jet.math that return IntIntFunction
static IntIntFunction chain(IntFunction g, IntIntFunction h)
          Constructs the function g( h(a,b) ).
static IntIntFunction chain(IntIntFunction f, IntFunction g, IntFunction h)
          Constructs the function f( g(a), h(b) ).
static IntIntFunction swapArgs(IntIntFunction function)
          Constructs a function that returns function.apply(b,a), i.e.
 

Methods in cern.jet.math with parameters of type IntIntFunction
static IntFunction 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 IntFunction 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 IntIntFunction chain(IntFunction g, IntIntFunction h)
          Constructs the function g( h(a,b) ).
static IntIntFunction chain(IntIntFunction f, IntFunction g, IntFunction h)
          Constructs the function f( g(a), h(b) ).
static IntIntFunction swapArgs(IntIntFunction function)
          Constructs a function that returns function.apply(b,a), i.e.
 


Colt 1.0.1

Submit a bug or feature. Check the Colt home page for the latest news.