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

Method putLong

lib/java/nio/ReadWriteHeapByteBuffer.java:175–182  ·  view source on GitHub ↗
(int index, long value)

Source from the content-addressed store, hash-verified

173 }
174
175 @Override
176 public ByteBuffer putLong(int index, long value) {
177 if (index < 0 || (long) index + 8 > limit) {
178 throw new IndexOutOfBoundsException();
179 }
180 store(index, value);
181 return this;
182 }
183
184 @Override
185 public ByteBuffer putLong(long value) {

Callers 1

putDoubleMethod · 0.95

Calls 1

storeMethod · 0.80

Tested by

no test coverage detected