MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / readBigEndianUInt64

Method readBigEndianUInt64

include/cpp/marshal/Marshal.hpp:250–257  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

248}
249
250inline uint64_t cpp::marshal::Marshal::readBigEndianUInt64(const View<uint8_t>& view)
251{
252#ifdef HXCPP_BIG_ENDIAN
253 return readInt64(view);
254#else
255 return reverse(readUInt64(view));
256#endif
257}
258
259inline float cpp::marshal::Marshal::readBigEndianFloat32(const View<uint8_t>& view)
260{

Callers

nothing calls this directly

Calls 1

reverseFunction · 0.70

Tested by

no test coverage detected