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

com.annimon.stream.function.ThrowableDoubleSupplier Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
package com.annimon.stream.function;

/**
 * Represents a supplier of {@code double}-valued results.
 *
 * @param  the type of the exception
 * @since 1.1.7
 * @see DoubleSupplier
 */
public interface ThrowableDoubleSupplier {

    /**
     * Gets a result.
     *
     * @return a result
     * @throws E an exception
     */
    double getAsDouble() throws E;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy