jOOQ / jOOL

jOOλ - The Missing Parts in Java 8 jOOλ improves the JDK libraries in areas where the Expert Group's focus was elsewhere. It adds tuple support, function support, and a lot of additional functionality around sequential Streams. The JDK 8's main efforts (default methods, lambdas, and the Stream API) were focused around maintaining backwards compatibility and implementing a functional API for parallelism.
http://www.jooq.org/products
Apache License 2.0
2.08k stars 167 forks source link

JOOL miss CheckedToBooleanFunction #347

Closed strogiyotec closed 5 years ago

strogiyotec commented 5 years ago

JOOL has a lot of interfaces which convert generic type T to primitive type like

CheckedToDoubleFunction
CheckedToIntFunction

it would be nice to have

CheckedToBooleanFunction

that accepts generic type and return boolean

lukaseder commented 5 years ago

You're looking for CheckedPredicate. The name is derived from the JDK's functional interface types.