Learn R Programming

bit (version 4.6.0)

c.booltype: Concatenating booltype vectors

Description

Creating new boolean vectors by concatenating boolean vectors

Usage

# S3 method for booltype
c(...)

# S3 method for bit c(...)

# S3 method for bitwhich c(...)

Value

a vector with the lowest input booltype() (but not lower thanlogical())

Arguments

...

booltype() vectors

Author

Jens Oehlschlägel

See Also

c(), bit() , bitwhich(), , which()

Examples

Run this code
 c(bit(4), !bit(4))
 c(bit(4), !bitwhich(4))
 c(bitwhich(4), !bit(4))
 c(ri(1, 2, 4), !bit(4))
 c(bit(4), !logical(4))
 message("logical in first argument does not dispatch: c(logical(4), bit(4))")
 c.booltype(logical(4), !bit(4))

Run the code above in your browser using DataLab