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

Method readBigEndianUInt32

include/cpp/marshal/Marshal.hpp:241–248  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

239}
240
241inline uint32_t cpp::marshal::Marshal::readBigEndianUInt32(const View<uint8_t>& view)
242{
243#ifdef HXCPP_BIG_ENDIAN
244 return readUInt32(view);
245#else
246 return reverse(readUInt32(view));
247#endif
248}
249
250inline uint64_t cpp::marshal::Marshal::readBigEndianUInt64(const View<uint8_t>& view)
251{

Callers

nothing calls this directly

Calls 1

reverseFunction · 0.70

Tested by

no test coverage detected