bigEndian

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

Examples

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

Meta