1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/bit.R
\name{c.booltype}
\alias{c.booltype}
\alias{c.bit}
\alias{c.bitwhich}
\title{Concatenating booltype vectors}
\usage{
\method{c}{booltype}(...)
\method{c}{bit}(...)
\method{c}{bitwhich}(...)
}
\arguments{
\item{...}{\code{\link[=booltype]{booltype()}} vectors}
}
\value{
a vector with the lowest input \code{\link[=booltype]{booltype()}} (but not lower than\code{\link[=logical]{logical()}})
}
\description{
Creating new boolean vectors by concatenating boolean vectors
}
\examples{
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))
}
\seealso{
\code{\link[=c]{c()}}, \code{\link[=bit]{bit()}} , \code{\link[=bitwhich]{bitwhich()}}, , \code{\link[=which]{which()}}
}
\author{
Jens Oehlschlägel
}
\keyword{classes}
\keyword{logic}
|