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

Method readBigEndianFloat64

include/cpp/marshal/Marshal.hpp:268–275  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

266}
267
268inline double cpp::marshal::Marshal::readBigEndianFloat64(const View<uint8_t>& view)
269{
270#ifdef HXCPP_BIG_ENDIAN
271 return readFloat64(view);
272#else
273 return reverse(readFloat64(view));
274#endif
275}
276
277template<class T>
278inline ::cpp::Pointer<T> cpp::marshal::Marshal::readLittleEndianPointer(const View<uint8_t>& view)

Callers

nothing calls this directly

Calls 1

reverseFunction · 0.70

Tested by

no test coverage detected