bits.RdLiteral bit representation.
bits(x, k = 54, pos_sign = FALSE, break0 = FALSE)The literal bit/binary representation of a floating point number is computed by subtracting powers of 2.
Returns a string containing the binary representation.
bits(2^10) # "10000000000"
#> [1] "10000000000"
bits(1 + 2^-10) # "1.000000000100000000000000000000000000000000000000000000"
#> [1] "1.000000000100000000000000000000000000000000000000000000"
bits(pi) # "11.001001000011111101101010100010001000010110100011000000"
#> [1] "11.001001000011111101101010100010001000010110100011000000"
bits(1/3.0) # "0.010101010101010101010101010101010101010101010101010101"
#> [1] "0.010101010101010101010101010101010101010101010101010101"
bits(1 + eps()) # "1.000000000000000000000000000000000000000000000000000100"
#> [1] "1.000000000000000000000000000000000000000000000000000100"