Exemplo n.º 1
0
 /** @see {@link Unchecked#booleanSupplier(CheckedBooleanSupplier, Consumer)} */
 static BooleanSupplier unchecked(CheckedBooleanSupplier supplier, Consumer<Throwable> handler) {
   return Unchecked.booleanSupplier(supplier, handler);
 }
Exemplo n.º 2
0
 /** @see {@link Unchecked#booleanSupplier(CheckedBooleanSupplier)} */
 static BooleanSupplier unchecked(CheckedBooleanSupplier supplier) {
   return Unchecked.booleanSupplier(supplier);
 }
Exemplo n.º 3
0
 /** @see {@link Unchecked#intToLongFunction(CheckedIntToLongFunction, Consumer)} */
 static IntToLongFunction unchecked(
     CheckedIntToLongFunction function, Consumer<Throwable> handler) {
   return Unchecked.intToLongFunction(function, handler);
 }
Exemplo n.º 4
0
 /** @see {@link Unchecked#intToLongFunction(CheckedIntToLongFunction)} */
 static IntToLongFunction unchecked(CheckedIntToLongFunction function) {
   return Unchecked.intToLongFunction(function);
 }
Exemplo n.º 5
0
 /** @see {@link Unchecked#longToIntFunction(CheckedLongToIntFunction, Consumer)} */
 static LongToIntFunction unchecked(
     CheckedLongToIntFunction function, Consumer<Throwable> handler) {
   return Unchecked.longToIntFunction(function, handler);
 }
Exemplo n.º 6
0
 /** @see {@link Unchecked#longToIntFunction(CheckedLongToIntFunction)} */
 static LongToIntFunction unchecked(CheckedLongToIntFunction function) {
   return Unchecked.longToIntFunction(function);
 }