We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Not
1 parent 24c535e commit ebaf9a1Copy full SHA for ebaf9a1
src/main/java/rx/functions/Functions.java
@@ -344,19 +344,6 @@ public Void call(Object... args) {
344
};
345
}
346
347
- /**
348
- * Constructs a predicate that returns true for each input for which the source predicate returns false, and
349
- * vice versa.
350
- *
351
- * @param predicate
352
- * the source predicate to negate
353
- * @return a function that returns a Boolean that represents an inversion of the logical effect of
354
- * {@code predicate}
355
- */
356
- public static <T> Func1<T, Boolean> not(Func1<? super T, Boolean> predicate) {
357
- return new Not<T>(predicate);
358
- }
359
-
360
/**
361
* Returns a function that always returns {@code true}.
362
*
src/main/java/rx/functions/Not.java
0 commit comments