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

Comparing jsr166/src/extra166y/CommonOps.java (file contents):
Revision 1.5 by jsr166, Mon Dec 5 04:08:47 2011 UTC vs.
Revision 1.6 by jsr166, Wed Jan 16 00:51:11 2013 UTC

# Line 100 | Line 100 | public class CommonOps {
100  
101      /**
102       * Returns a reducer returning maximum of two values, or
103 <     * <tt>null</tt> if both arguments are null, and that casts
103 >     * {@code null} if both arguments are null, and that casts
104       * its arguments as Comparable on each comparison, throwing
105       * ClassCastException on failure.
106       */
# Line 118 | Line 118 | public class CommonOps {
118  
119      /**
120       * Returns a reducer returning minimum of two values, or
121 <     * <tt>null</tt> if both arguments are null, and that casts
121 >     * {@code null} if both arguments are null, and that casts
122       * its arguments as Comparable on each comparison, throwing
123       * ClassCastException on failure.
124       */
# Line 952 | Line 952 | public class CommonOps {
952  
953      /**
954       * Returns a predicate evaluating to true if the
955 <     * first argument <tt>equals</tt> the second
955 >     * first argument {@code equals} the second
956       */
957      public static BinaryPredicate<Object, Object> equalityPredicate() {
958          return EqualityPredicate.predicate;
# Line 967 | Line 967 | public class CommonOps {
967  
968      /**
969       * Returns a predicate evaluating to true if the
970 <     * first argument <tt>==</tt> the second
970 >     * first argument {@code ==} the second
971       */
972      public static BinaryPredicate<Object, Object> identityPredicate() {
973          return IdentityPredicate.predicate;
# Line 982 | Line 982 | public class CommonOps {
982  
983      /**
984       * Returns a predicate evaluating to true if the
985 <     * first argument <tt>==</tt> the second
985 >     * first argument {@code ==} the second
986       */
987      public static BinaryIntPredicate intEqualityPredicate() {
988          return IntEqualityPredicate.predicate;
# Line 997 | Line 997 | public class CommonOps {
997  
998      /**
999       * Returns a predicate evaluating to true if the
1000 <     * first argument <tt>==</tt> the second
1000 >     * first argument {@code ==} the second
1001       */
1002      public static BinaryLongPredicate longEqualityPredicate() {
1003          return LongEqualityPredicate.predicate;
# Line 1012 | Line 1012 | public class CommonOps {
1012  
1013      /**
1014       * Returns a predicate evaluating to true if the
1015 <     * first argument <tt>==</tt> the second
1015 >     * first argument {@code ==} the second
1016       */
1017      public static BinaryDoublePredicate doubleEqualityPredicate() {
1018          return DoubleEqualityPredicate.predicate;
# Line 1028 | Line 1028 | public class CommonOps {
1028  
1029      /**
1030       * Returns a predicate evaluating to true if the
1031 <     * first argument <tt>!equals</tt> the second
1031 >     * first argument {@code !equals} the second
1032       */
1033      public static BinaryPredicate<Object, Object> inequalityPredicate() {
1034          return InequalityPredicate.predicate;
# Line 1043 | Line 1043 | public class CommonOps {
1043  
1044      /**
1045       * Returns a predicate evaluating to true if the
1046 <     * first argument <tt>!=</tt> the second
1046 >     * first argument {@code !=} the second
1047       */
1048      public static BinaryPredicate<Object, Object> nonidentityPredicate() {
1049          return NonidentityPredicate.predicate;
# Line 1058 | Line 1058 | public class CommonOps {
1058  
1059      /**
1060       * Returns a predicate evaluating to true if the
1061 <     * first argument <tt>!=</tt> the second
1061 >     * first argument {@code !=} the second
1062       */
1063      public static BinaryIntPredicate intInequalityPredicate() {
1064          return IntInequalityPredicate.predicate;
# Line 1073 | Line 1073 | public class CommonOps {
1073  
1074      /**
1075       * Returns a predicate evaluating to true if the
1076 <     * first argument <tt>==</tt> the second
1076 >     * first argument {@code ==} the second
1077       */
1078      public static BinaryLongPredicate longInequalityPredicate() {
1079          return LongInequalityPredicate.predicate;
# Line 1088 | Line 1088 | public class CommonOps {
1088  
1089      /**
1090       * Returns a predicate evaluating to true if the
1091 <     * first argument <tt>!=</tt> the second
1091 >     * first argument {@code !=} the second
1092       */
1093      public static BinaryDoublePredicate doubleInequalityPredicate() {
1094          return DoubleInequalityPredicate.predicate;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines