This repository was archived by the owner on Apr 1, 2020. It is now read-only.

Description
Therefore the return value of org.jooby.funzy.Throwing.throwingConsumer(Consumer2<V1, V2>) cannot be used as BiConsumer.
Is this intentional?
org.jooby.funzy.Throwing.Function2<V1, V2, R> does extend java.util.function.BiFunction<V1, V2, R>.
Workaround is to use Throwing.throwingConsumer(...)::accept.