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

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

The newest version!
package com.annimon.stream.function;

/**
 * Represents a supplier of {@code int}-valued results.  This is the
 * {@code int}-producing primitive specialization of {@link Supplier}.
 *
 * 

There is no requirement that a distinct result be returned each * time the supplier is invoked. */ @FunctionalInterface public interface IntSupplier { /** * Gets a result. * * @return a result */ int getAsInt(); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy