All Downloads are FREE. Search and download functionalities are using the official Maven repository.

uk.kludje.fn.function.UDoubleFunction Maven / Gradle / Ivy

There is a newer version: 0.8
Show newest version
/*Generated file; do not edit*/
package uk.kludje.fn.function;

/**
 * A functional interface for handling checked exceptions.
 * See parent type for intent.
 */
@java.lang.FunctionalInterface
@javax.annotation.Generated("uk.kludje.annotation.processor.UncheckedFunctionalInterfaceProcessor")
public interface UDoubleFunction extends java.util.function.DoubleFunction {

      /**
       * Invokes {@code R $apply(double arg0)}.
       * Throws anything thrown by {@code R $apply(double arg0)}.
       */
       default R apply(double arg0) {
        try {
          return $apply(arg0);
        } catch (Throwable throwable) {
          throw uk.kludje.Exceptions.throwChecked(throwable);
        }
      }

      R $apply(double arg0) throws Throwable;

      /**
       * Convenience method as an alternative to casting.
       *
       * @param t the unchecked type
       * @return t
       */
      public static  UDoubleFunction asUDoubleFunction(UDoubleFunction t) {
        return t;
      }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy