the integral value
the flipped integral
Tests the flip!(T)(T) function
version(BigEndian) { ushort i = 1; ushort flipped = flip(i); assert(flipped == 256); } else version(LittleEndian) { ushort i = 1; ushort flipped = flip(i); assert(flipped == 256); }
Flips the given integral value