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

Method putInt

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

Source from the content-addressed store, hash-verified

155 }
156
157 public ByteBuffer putInt(int position, int val) {
158 checkPut(position, 4, true);
159
160 rawPutInt(position, val);
161
162 return this;
163 }
164
165 public ByteBuffer putShort(int position, short val) {
166 checkPut(position, 2, true);

Callers 1

testMethod · 0.95

Calls 2

checkPutMethod · 0.95
rawPutIntMethod · 0.95

Tested by 1

testMethod · 0.76