MCPcopy Create free account
hub / github.com/grpc/grpc-java / next

Method next

api/src/main/java/io/grpc/Metadata.java:286–293  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

284 }
285
286 @Override
287 public T next() {
288 if (hasNext()) {
289 hasNext = false;
290 return valueAsT(idx++, key);
291 }
292 throw new NoSuchElementException();
293 }
294
295 @Override
296 public void remove() {

Callers

nothing calls this directly

Calls 2

hasNextMethod · 0.95
valueAsTMethod · 0.80

Tested by

no test coverage detected