License:
BSD style: see license.txtVersion:
Initial release: October 2004Version:
Feb 20th 2005 - Asm version removed by Aleksey BobnevAuthor:
Kris, Aleksey Bobnev
1 2 3 4 5 | ubyte[] x = [0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08]; swap16 (x) => 02 01 04 03 06 05 08 07 swap32 (x) => 04 03 02 01 08 07 06 05 swap64 (x) => 08 07 06 05 04 03 02 01 |