net.sf.jga.fn

Interface UnaryPredicate<T>

public interface UnaryPredicate<T> extends UnaryFunctor<T,Boolean>, Serializable

A Predicate that takes one argument and returns a boolean result. The argument is of type T.

Copyright © 2002 David A. Hall

Author: David A. Hall

Method Summary
booleanp(T arg)
Evaluates the predicate and returns true or false.

Method Detail

p

public boolean p(T arg)
Evaluates the predicate and returns true or false.