You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
uint32 elements can be interacted with by client code: https://go.dev/play/p/XZ6wRHlti3N: suggest making the type struct { [4]uint32 } if the uint32 approach is retained.
endianness of data is mixed machine-endian and little-endian: this is only safe on little-endian architecture,
The text was updated successfully, but these errors were encountered:
The UUID API makes use of (visible) uint32 backing data, this is not currently endian-agnostic and can be interacted with by users directly.
struct { [4]uint32 }
if the uint32 approach is retained.The text was updated successfully, but these errors were encountered: