MCPcopy Create free account
hub / github.com/GRAnimated/MinecraftLCE / write

Method write

src/Minecraft.World/java/io/DataOutputStream.cpp:34–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32}
33
34void DataOutputStream::write(unsigned int value) {
35 this->m_outputStream->write(value);
36 ++this->m_size;
37}
38
39void DataOutputStream::writeUnsignedShort(unsigned short value) {
40 this->m_outputStream->write((value >> 8) & 0xFF);

Callers 6

writeIntMethod · 0.45
writeLongMethod · 0.45
writeBooleanMethod · 0.45
writeByteMethod · 0.45
writeUnsignedShortMethod · 0.45
writeShortMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected