KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > jfun > parsec > Binary


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

13 public interface Binary<T> extends Map2<T,T,T>{
14
15 }
16
Popular Tags