<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * Predicate allows arbitrary objects to specify a valuation and allow
 * truth to be determined...
 */
public interface Predicate {
 
  public boolean of(Object x);
  
}</pre></body></html>