package info.ebenoit.ebul.func; /** * This interface supports a {@link FloatToLongFunction} 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 ThrowingFloatToLongFunction extends FloatToLongFunction { /** * Applies this function to the given argument. * * @param t * the argument * @return the result * @throws FunctionException * if a checked exception occurs */ @Override default long applyAsLong( final float t ) { try { return this.throwingApplyAsLong( 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 * if a checked exception occurs */ public long throwingApplyAsLong( float t ) throws Throwable; }