01: // Copyright (c) 2002 Per M.A. Bothner
02: // This is free software; for terms and warranty disclaimer see ./COPYING.
03:
04: package gnu.lists;
05:
06: /** A predicate (or type) on an item in a sequence.
07: */
08:
09: public interface ItemPredicate {
10: public boolean isInstancePos(AbstractSequence seq, int ipos);
11: }
|