KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > jfun > parsec > Unary


1 package jfun.parsec;
2
3 /**
4  * This interface represents a unary operation on the same type.
5  * <p>
6  * Implement this interface for unary operator instead of {@link Map} to save keystrokes.
7  * <p>
8  * @since version 1.0
9  * @author Ben Yu
10  * Apr 6, 2006 7:20:47 PM
11  * @param <T>
12  */

13 public interface Unary<T> extends Map<T,T> {
14
15 }
16
Popular Tags