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