* @param to exclusive maximum, >= {@code from}
* @param incrementUnit > 0
* @return never null
*/
public static CountableValueRange<Integer> createIntValueRange(int from, int to, int incrementUnit) {
return new IntValueRange(from, to, incrementUnit);
}