File: bit_init.Rd

package info (click to toggle)
r-cran-bit 4.0.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 996 kB
  • sloc: ansic: 5,083; makefile: 6
file content (42 lines) | stat: -rw-r--r-- 782 bytes parent folder | download | duplicates (2)
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
42
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/bit.R
\docType{data}
\name{.BITS}
\alias{.BITS}
\alias{bit_init}
\alias{bit_done}
\title{Initializing bit masks}
\format{
An object of class \code{integer} of length 1.
}
\usage{
.BITS

bit_init()

bit_done()
}
\description{
Functions to allocate (and de-allocate) bit masks
}
\details{
The C-code operates with bit masks.  The memory for these is allocated
dynamically.  \code{bit_init} is called by \code{\link{.First.lib}} and
\code{bit_done} is called by \code{\link{.Last.lib}}.  You don't need to
care about these under normal circumstances.
}
\examples{

  bit_done()
  bit_init()

}
\seealso{
\code{\link{bit}}
}
\author{
Jens Oehlschlägel
}
\keyword{classes}
\keyword{datasets}
\keyword{logic}