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

Method toList

core/src/main/java/org/apache/calcite/sql/SqlNode.java:369–372  ·  view source on GitHub ↗

Returns a Collector that accumulates the input elements into a SqlNodeList, with zero position. @param Type of the input elements @return a Collector that collects all the input elements into a SqlNodeList, in encounter order

()

Source from the content-addressed store, hash-verified

367 * {@link SqlNodeList}, in encounter order
368 */
369 public static <T extends SqlNode> Collector<T, ArrayList<@Nullable SqlNode>, SqlNodeList>
370 toList() {
371 return toList(SqlParserPos.ZERO);
372 }
373
374 /**
375 * Returns a {@code Collector} that accumulates the input elements into a

Callers 3

stripListMethod · 0.95
toSqlMethod · 0.95
toInMethod · 0.95

Calls 2

ofMethod · 0.95
ofMethod · 0.65

Tested by

no test coverage detected