Function bytesToUint

Constructs uint from an array of bytes

uint bytesToUint (
  ubyte[4] src
);

Example

assert(bytesToUint([0xee, 0x10, 0xab, 0xff]) == 0xee10abff);