You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our Filter type is just a JDK Predicate, which was offered with Java 6 support in mind. Now that Java 6 support is being dropped, we can let Filter extend Predicate, and replace all references to Filter by Predicate<? super Context> throughout the API.
The text was updated successfully, but these errors were encountered:
lukaseder
changed the title
Let Filter extend Predicate<Context>
Let Filter extend Predicate<Context> and Mapper extend Function<Context, E>
Mar 7, 2021
lukaseder
changed the title
Let Filter extend Predicate<Context> and Mapper extend Function<Context, E>
Let Filter extend Predicate<Context>, Mapper extend Function<Context, E>, Each extend Consumer<Context>
Mar 7, 2021
lukaseder
changed the title
Let Filter extend Predicate<Context>, Mapper extend Function<Context, E>, Each extend Consumer<Context>
Let Filter extend Predicate<Context>, Mapper extend Function<Context, E>, Content extend Function<Context, String> Each extend Consumer<Context>
Mar 7, 2021
lukaseder
changed the title
Let Filter extend Predicate<Context>, Mapper extend Function<Context, E>, Content extend Function<Context, String> Each extend Consumer<Context>
Let Filter extend Predicate<Context>, Mapper extend Function<Context, E>, Content extend Function<Context, String>, Each extend Consumer<Context>
Mar 7, 2021
Our
Filter
type is just a JDKPredicate
, which was offered with Java 6 support in mind. Now that Java 6 support is being dropped, we can letFilter
extendPredicate
,and replace all references toFilter
byPredicate<? super Context>
throughout the API.The text was updated successfully, but these errors were encountered: