MCPcopy Index your code
hub / github.com/ZeppelinMC/Zeppelin / writeInt

Method writeInt

protocol/nbt/encoder.go:62–69  ·  view source on GitHub ↗
(i int32)

Source from the content-addressed store, hash-verified

60}
61
62func (e *Encoder) writeInt(i int32) error {
63 return e.writeBytes(
64 byte(i>>24),
65 byte(i>>16),
66 byte(i>>8),
67 byte(i),
68 )
69}
70
71func (e *Encoder) writeLong(l int64) error {
72 return e.writeBytes(

Callers 6

writeFloatMethod · 0.95
writeIntArrayMethod · 0.95
writeLongArrayMethod · 0.95
encodeCompoundStructMethod · 0.95
encodeCompoundMapMethod · 0.95
encodeListMethod · 0.95

Calls 1

writeBytesMethod · 0.95

Tested by

no test coverage detected