fillUpToBit: Fill up to bit (000..)

View source: R/binary.R

fillUpToBitR Documentation

Fill up to bit (000..)

Description

Fills up the binary number with zeros(0) or ones(1), to the size n in bit.

Usage

fillUpToBit(x, n, value=FALSE)

Arguments

x

The binary number to fill up with zeros. (Any binary vector).

n

size in bit.

value

to fill up with FALSE(0) or fill up with TRUE(1).

Details

No floating point supported.

Value

binary number. A binary vector with the desired size.

See Also

fillUpToByte.

Examples

rdiversity:::fillUpToBit(as.binary(c(1,1), logic=TRUE), n=4)
rdiversity:::fillUpToBit(as.binary(c(1,0,1), logic=TRUE), n=4, value=FALSE)

rdiversity documentation built on May 6, 2022, 9:06 a.m.