bytesNeeded {binaryLogic} | R Documentation |
A simple helper function that returns the minimum number of byte needed to hold the amount of n bit.
bytesNeeded(n)
n |
The number of bit. |
The number of minimum byte needed to hold n bit.
fillUpToByte or binaryPrefix or byte
ten <- as.binary(10) bytesNeeded(length(ten))