1 package frost.io
2
3 ====================================================================================================
4 Describes the byte order of multi-byte values when read from or written to a stream.
5 ====================================================================================================
6 choice ByteOrder {
7 ================================================================================================
8 The least significant bytes are written first.
9 ================================================================================================
10 LITTLE_ENDIAN
11
12 ================================================================================================
13 The most significant bytes are written first.
14 ================================================================================================
15 BIG_ENDIAN
16 }