/** @see {@link Unchecked#booleanSupplier(CheckedBooleanSupplier, Consumer)} */ static BooleanSupplier unchecked(CheckedBooleanSupplier supplier, Consumer<Throwable> handler) { return Unchecked.booleanSupplier(supplier, handler); }
/** @see {@link Unchecked#booleanSupplier(CheckedBooleanSupplier)} */ static BooleanSupplier unchecked(CheckedBooleanSupplier supplier) { return Unchecked.booleanSupplier(supplier); }
/** @see {@link Unchecked#intToLongFunction(CheckedIntToLongFunction, Consumer)} */ static IntToLongFunction unchecked( CheckedIntToLongFunction function, Consumer<Throwable> handler) { return Unchecked.intToLongFunction(function, handler); }
/** @see {@link Unchecked#intToLongFunction(CheckedIntToLongFunction)} */ static IntToLongFunction unchecked(CheckedIntToLongFunction function) { return Unchecked.intToLongFunction(function); }
/** @see {@link Unchecked#longToIntFunction(CheckedLongToIntFunction, Consumer)} */ static LongToIntFunction unchecked( CheckedLongToIntFunction function, Consumer<Throwable> handler) { return Unchecked.longToIntFunction(function, handler); }
/** @see {@link Unchecked#longToIntFunction(CheckedLongToIntFunction)} */ static LongToIntFunction unchecked(CheckedLongToIntFunction function) { return Unchecked.longToIntFunction(function); }