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