| java.lang.Object net.sf.jga.fn.arithmetic.ArithmeticFunctors
ArithmeticFunctors | final public class ArithmeticFunctors (Code) | | Static factory methods for the functors in the Comparison package.
Copyright © 2006 David A. Hall
|
Method Summary | |
public static UnaryFunctor<Iterator<T>, T> | average(Class<T> t) | public static BinaryFunctor<T, T, T> | bitwiseAnd(Class<T> t) | public static UnaryFunctor<T, T> | bitwiseAnd(T value) | public static UnaryFunctor<T, T> | bitwiseNot(Class<T> t) | public static BinaryFunctor<T, T, T> | bitwiseOr(Class<T> t) | public static UnaryFunctor<T, T> | bitwiseOr(T value) | public static BinaryFunctor<T, T, T> | bitwiseXor(Class<T> t) | public static UnaryFunctor<T, T> | bitwiseXor(T value) | public static BinaryFunctor<T, T, T> | divides(Class<T> t) | public static UnaryFunctor<T, T> | divides(T value) | public static BinaryFunctor<T, T, T> | minus(Class<T> t) | public static UnaryFunctor<T, T> | minus(T value) | public static BinaryFunctor<T, T, T> | modulus(Class<T> t) | public static UnaryFunctor<T, T> | modulus(T value) | public static BinaryFunctor<T, T, T> | multiplies(Class<T> t) | public static UnaryFunctor<T, T> | multiplies(T value) | public static UnaryFunctor<T, T> | negate(Class<T> t) | public static BinaryFunctor<T, T, T> | plus(Class<T> t) | public static UnaryFunctor<T, T> | plus(T value) | public static BinaryFunctor<T, Integer, T> | shiftLeft(Class<T> t) | public static BinaryFunctor<T, Integer, T> | shiftRight(Class<T> t) | public static BinaryFunctor<T, Integer, T> | unsignedShiftRight(Class<T> t) | public static UnaryFunctor<T, R> | valueOf(Class<R> r) |
|
|