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

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

package com.annimon.stream.function;

/**
 * Represents a supplier of {@code boolean}-valued results.
 *
 * @since 1.1.8
 * @see Supplier
 */
@FunctionalInterface
public interface BooleanSupplier {

    /**
     * Gets a result.
     *
     * @return a result
     */
    boolean getAsBoolean();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy