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

software.coley.llzip.util.lazy.LazyIntChain Maven / Gradle / Ivy

package software.coley.llzip.util.lazy;

/**
 * Lazy int getter.
 */
public class LazyIntChain extends LazyInt {
	/**
	 * @param values
	 * 		Chained values to combined as a lookup.
	 */
	public LazyIntChain(LazyInt... values) {
		super(() -> {
			int sum = 0;
			for (LazyInt lazy : values) {
				sum += lazy.get();
			}
			return sum;
		});
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy