MCPcopy Create free account
hub / github.com/CloudburstMC/Network / readInt

Method readInt

common/src/main/java/com/nukkitx/network/VarInts.java:12–15  ·  view source on GitHub ↗
(ByteBuf buffer)

Source from the content-addressed store, hash-verified

10 }
11
12 public static int readInt(ByteBuf buffer) {
13 int n = (int) decodeUnsigned(buffer);
14 return (n >>> 1) ^ -(n & 1);
15 }
16
17 public static void writeUnsignedInt(ByteBuf buffer, long integer) {
18 encodeUnsigned(buffer, integer);

Callers 4

decodeMethod · 0.80
decodeMethod · 0.80
decodeMethod · 0.80
readAddressMethod · 0.80

Calls 1

decodeUnsignedMethod · 0.95

Tested by

no test coverage detected