Esempio n. 1
0
 public static int[] range(int from, int to) {
   return Range.range(from, to, 1);
 }
Esempio n. 2
0
 public DistanceAggregation range(Object from, Object to) {
   return range(Range.range(from, to));
 }
Esempio n. 3
0
 public static int[] range(int to) {
   return Range.range(0, to);
 }