Exemple #1
0
 @Override
 protected List<Long> rangeBy(long from, long toExclusive, long step) {
   return List.rangeBy(from, toExclusive, step);
 }
Exemple #2
0
 @Override
 protected List<Double> rangeBy(double from, double toExclusive, double step) {
   return List.rangeBy(from, toExclusive, step);
 }
Exemple #3
0
 @Override
 protected List<Integer> rangeBy(int from, int toExclusive, int step) {
   return List.rangeBy(from, toExclusive, step);
 }
Exemple #4
0
 @Override
 protected List<Character> rangeBy(char from, char toExclusive, int step) {
   return List.rangeBy(from, toExclusive, step);
 }