MCPcopy Create free account
hub / github.com/apache/calcite / range

Method range

core/src/main/java/org/apache/calcite/util/Util.java:2232–2242  ·  view source on GitHub ↗
(final int end)

Source from the content-addressed store, hash-verified

2230 }
2231
2232 public static List<Integer> range(final int end) {
2233 return new AbstractList<Integer>() {
2234 @Override public int size() {
2235 return end;
2236 }
2237
2238 @Override public Integer get(int index) {
2239 return index;
2240 }
2241 };
2242 }
2243
2244 public static List<Integer> range(final int start, final int end) {
2245 return new AbstractList<Integer>() {

Callers 15

toRelMethod · 0.95
fieldsMethod · 0.95
aggregateRexMethod · 0.95
groupMethod · 0.95
registerMethod · 0.95
handleMethod · 0.95
inferReturnTypeMethod · 0.95
checkMethod · 0.95
getOperandListMethod · 0.95
convertToMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected