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

org.psjava.formula.MinInIterable Maven / Gradle / Ivy

There is a newer version: 0.1.19
Show newest version
package org.psjava.formula;

import java.util.Comparator;

import org.psjava.util.ReversedComparator;

public class MinInIterable {

	public static  T min(Iterable iterable, Comparator comp) {
		return MaxInIterable.max(iterable, ReversedComparator.wrap(comp));
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy