switchEndianess {binaryLogic} | R Documentation |
Switch little-endian to big-endian and vice versa.
switchEndianess(x, stickyBits=FALSE)
x |
binary number. Any binary number. |
stickyBits |
Bits wont change if set TRUE. Only the attribute will be switched. |
switch little-endian to big-endian and vice versa.
negate or fillUpToByte.
x <- as.binary(c(1,1,0,0), logic=TRUE); print(x); summary(x); y <- switchEndianess(x); print(y); summary(y); y <- switchEndianess(x, stickyBits=TRUE); print(y); summary(y);