← Standard library

WriteBE

public fn WriteBE<T>(Span<uint8> bytes, int32 offset, T value) : void where T is numeric
import WriteBE from Wax::BitConverter;

Writes sizeof(T) bytes at offset in big-endian order. Floating-point values are transferred by their bit patterns, not a numeric integer conversion. The entire range must fit or the operation panics; no alignment requirement is imposed.

BitConverter.wax:106

This declaration has no public members of its own.