networkByteOrder

Undocumented in source. Be warned that the author may not have intended to support it.
  1. ushort networkByteOrder(ushort value)
  2. uint networkByteOrder(uint value)
  3. ushort networkByteOrder(ushort value)
    version(LittleEndian)
    nothrow
    ushort
    networkByteOrder
    (
    ushort value
    )
  4. uint networkByteOrder(uint value)

Examples

assert(networkByteOrder(cast(ushort)0x00FF) == 0xFF00);

Meta