MCPcopy Create free account
hub / github.com/davidgiven/luje / get

Method get

lib/java/nio/CharSequenceAdapter.java:62–68  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

60 }
61
62 @Override
63 public char get() {
64 if (position == limit) {
65 throw new BufferUnderflowException();
66 }
67 return sequence.charAt(position++);
68 }
69
70 @Override
71 public char get(int index) {

Callers

nothing calls this directly

Calls 4

remainingMethod · 0.80
charAtMethod · 0.65
toStringMethod · 0.65
getCharsMethod · 0.45

Tested by

no test coverage detected