ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/extra166y/Ops.java
(Generate patch)

Comparing jsr166/src/extra166y/Ops.java (file contents):
Revision 1.6 by jsr166, Wed Jan 16 00:51:11 2013 UTC vs.
Revision 1.8 by jsr166, Sun Jan 18 20:17:32 2015 UTC

# Line 5 | Line 5
5   */
6  
7   package extra166y;
8 +
9   import java.util.*;
10  
11   /**
# Line 339 | Line 340 | public class Ops {
340      public static interface BinaryPredicate<A,B>         { boolean op(A a, B b);}
341      public static interface Procedure<A>                 { void    op(A a);}
342      public static interface Generator<R>                 { R       op();}
343 <    public static interface Reducer<A> extends BinaryOp<A, A, A> {}
343 >    public static interface Reducer<A> extends BinaryOp<A,A,A> {}
344  
345      public static interface IntOp                        { int     op(int a);}
346      public static interface BinaryIntOp                  { int     op(int a, int b);}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines