net.sf.jga.fn

Class AbstractBinaryPredicate<T1,T2>

public abstract class AbstractBinaryPredicate<T1,T2> extends AbstractBinaryFunctor<T1,T2,Boolean> implements BinaryPredicate<T1,T2>

Provides default implementation of BinaryFunctor interface for use by BinaryPredicates.

Author: David A. Hall

Method Summary
Booleanfn(T1 x, T2 y)
Returns the result of p(x,y) as a Boolean.

Method Detail

fn

public final Boolean fn(T1 x, T2 y)
Returns the result of p(x,y) as a Boolean.

UNKNOWN: the result of p(x,y) as a Boolean.