01: /*
02: * Created on 15-Aug-2003
03: */
04: package uk.org.ponder.intutil;
05:
06: /**
07: * @author Bosmon
08: *
09: * The class intIterator represents an iteration through a sequence of native
10: * integers.
11: */
12: // This technique is deprecated by Kevlin, but we use it anyway.
13: public interface intIterator extends constIntIterator {
14: public void setInt(int toset);
15: }
|