net.sf.jga.fn

Interface BinaryPredicate<T1,T2>

public interface BinaryPredicate<T1,T2> extends BinaryFunctor<T1,T2,Boolean>, Serializable

A Predicate that takes two arguments and returns a boolean result. The two arguments are of type T1 and T2

Copyright © 2002 David A. Hall

Author: David A. Hall

Method Summary
booleanp(T1 arg1, T2 arg2)
Evaluates the predicate and returns true or false.

Method Detail

p

public boolean p(T1 arg1, T2 arg2)
Evaluates the predicate and returns true or false.