MCPcopy Create free account
hub / github.com/ReadyTalk/avian / putLong

Method putLong

classpath/java/nio/ByteBuffer.java:149–155  ·  view source on GitHub ↗
(int position, long val)

Source from the content-addressed store, hash-verified

147 }
148
149 public ByteBuffer putLong(int position, long val) {
150 checkPut(position, 8, true);
151
152 rawPutLong(position, val);
153
154 return this;
155 }
156
157 public ByteBuffer putInt(int position, int val) {
158 checkPut(position, 4, true);

Callers 1

testMethod · 0.95

Calls 2

checkPutMethod · 0.95
rawPutLongMethod · 0.95

Tested by 1

testMethod · 0.76