MCPcopy Index your code
hub / github.com/antlr/codebuff / create

Method create

output/java_guava/1.4.19/TreeBasedTable.java:106–108  ·  view source on GitHub ↗

Creates an empty TreeBasedTable that uses the natural orderings of both row and column keys. The method signature specifies R extends Comparable with a raw Comparable, instead of R extends Comparable<? super R>, and the same for C. That's necessary to supp

()

Source from the content-addressed store, hash-verified

104
105
106 public static <R extends Comparable, C extends Comparable, V> TreeBasedTable<R, C, V> create() {
107 return new TreeBasedTable<R, C, V>(Ordering.natural(), Ordering.natural());
108 }
109
110 /**
111 * Creates an empty {@code TreeBasedTable} that is ordered by the specified

Callers

nothing calls this directly

Calls 5

naturalMethod · 0.95
putAllMethod · 0.65
checkNotNullMethod · 0.45
rowComparatorMethod · 0.45
columnComparatorMethod · 0.45

Tested by

no test coverage detected