6 lines
179 B
Java
6 lines
179 B
Java
//: net/mindview/util/Generator.java
|
|
// ©2015 MindView LLC: see Copyright.txt
|
|
// A generic interface.
|
|
package net.mindview.util;
|
|
public interface Generator<T> { T next(); } ///:~
|