Swaps bytes in a 2 byte ushort.
value
x with bytes swapped
assert(byteswap(cast(ushort)0xF234) == 0x34F2); static ushort xx = 0xF234; assert(byteswap(xx) == 0x34F2);
See Implementation
Swaps bytes in a 2 byte ushort.