MCPcopy Create free account
hub / github.com/antlr/codebuff / next

Method next

output/java_guava/1.4.17/StandardTable.java:256–264  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

254 }
255
256 @Override
257 public Cell<R, C, V> next() {
258 if (!columnIterator.hasNext()) {
259 rowEntry = rowIterator.next();
260 columnIterator = rowEntry.getValue().entrySet().iterator();
261 }
262 Entry<C, V> columnEntry = columnIterator.next();
263 return Tables.immutableCell(rowEntry.getKey(), columnEntry.getKey(), columnEntry.getValue());
264 }
265
266 @Override
267 public void remove() {

Callers

nothing calls this directly

Calls 7

immutableCellMethod · 0.95
nextMethod · 0.65
iteratorMethod · 0.65
entrySetMethod · 0.65
getValueMethod · 0.65
getKeyMethod · 0.65
hasNextMethod · 0.45

Tested by

no test coverage detected