package info.ebenoit.ebul.func; import java.util.function.ToDoubleFunction; /** * This interface supports a {@link ToDoubleFunction} that can throw checked exceptions. Checked exceptions are * transmitted using a {@link FunctionException} runtime exception. * * @author <a href="mailto:ebenoit@ebenoit.info">E. BenoƮt</a> */ @FunctionalInterface public interface ThrowingToDoubleFunction< T > extends ToDoubleFunction< T > { /** * Applies this function to the given argument. * * @param t * the argument * @return the result * @throws FunctionException * if a checked exception occurs */ @Override default double applyAsDouble( final T t ) { try { return this.throwingApplyAsDouble( t ); } catch ( final Error | RuntimeException e ) { throw e; } catch ( final Throwable e ) { throw new FunctionException( e ); } } /** * Applies this function to the given argument. * * @param t * the argument * @return the result * @throws Throwable * any exception */ public double throwingApplyAsDouble( T t ) throws Throwable; }