File: c.booltype.Rd

package info (click to toggle)
r-cran-bit 4.6.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,000 kB
  • sloc: ansic: 5,145; sh: 13; makefile: 6
file content (41 lines) | stat: -rw-r--r-- 999 bytes parent folder | download
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}