Returns a predicate that always evaluates to true.
()
| 53 | */ |
| 54 | |
| 55 | @GwtCompatible(serializable = true) |
| 56 | public static <T> Predicate<T> alwaysTrue() { |
| 57 | return ObjectPredicate.ALWAYS_TRUE.withNarrowedType(); |
| 58 | } |
| 59 | |
| 60 | /** |
| 61 | * Returns a predicate that always evaluates to {@code false}. |
no test coverage detected