Learn R Programming

rdiversity (version 2.2.0)

bytesNeeded: Minimum number of "byte" needed to hold n "bit"

Description

A simple helper function that returns the minimum number of byte needed to hold the amount of n bit.

Usage

bytesNeeded(n)

Arguments

n

The number of bit.

Value

The number of minimum byte needed to hold n bit.

See Also

fillUpToByte or byte

Examples

Run this code
# NOT RUN {
ten <- as.binary(10)
rdiversity:::bytesNeeded(length(ten))
# }

Run the code above in your browser using DataLab