The result inherits arguments from the first element.

# S3 method for bits
c(...)

Arguments

...

the bits to concatenate

See also

Other bits: as.character.bits(), bits2int(), bits(), print.bits()

Author

Thierry Onkelinx

Examples

z <- bits(c(FALSE, TRUE))
z
#> 01
c(z, z, rev(z))
#> 010110