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.
Therefore the return value of
org.jooby.funzy.Throwing.throwingConsumer(Consumer2<V1, V2>)cannot be used asBiConsumer.Is this intentional?
org.jooby.funzy.Throwing.Function2<V1, V2, R>does extendjava.util.function.BiFunction<V1, V2, R>.Workaround is to use
Throwing.throwingConsumer(...)::accept.