enum const class std::Endian

sys::Obj
  sys::Enum
    std::Endian

@Serializable { simple=true }

Byte ordering.

big

const static Endian big := ...

Most significant byte first (network byte order)

fromStr

static new fromStr(Str name, Bool checked := true)

Return the Endian instance for the specified name. If not a valid name and checked is false return null, otherwise throw ParseErr.

little

const static Endian little := ...

Least significant byte first

vals

const static List<Endian> vals := Endian[Endian.big,Endian.little]

List of Endian values indexed by ordinal