01: /*
02: * Created on 15-Aug-2003
03: */
04: package uk.org.ponder.doubleutil;
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 doubleIterator extends constDoubleIterator {
14: public void setDouble(double toset);
15: }
|