示例#1
0
 @Override
 protected Vector<Long> range(long from, long toExclusive) {
   return Vector.range(from, toExclusive);
 }
示例#2
0
 @Override
 protected Vector<Character> range(char from, char toExclusive) {
   return Vector.range(from, toExclusive);
 }
示例#3
0
 @Override
 protected Vector<Integer> range(int from, int toExclusive) {
   return Vector.range(from, toExclusive);
 }