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

Method writeDouble

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

Source from the content-addressed store, hash-verified

49}
50
51void DataOutputStream::writeDouble(double value) {
52 long long fake = Double::doubleToLongBits(value);
53 this->writeLong(fake);
54 m_size += 8; // already increments by 4 in writeLong
55}
56
57void DataOutputStream::writeFloat(float value) {
58 int fake = Float::floatToIntBits(value);

Callers 5

writeMethod · 0.80
writeMethod · 0.80
writeMethod · 0.80
writeMethod · 0.80
writeMethod · 0.80

Calls 1

writeLongMethod · 0.95

Tested by

no test coverage detected