-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathDESCRIPTION
34 lines (34 loc) · 1.41 KB
/
DESCRIPTION
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
Package: bit64
Title: A S3 Class for Vectors of 64bit Integers
Version: 4.5.99
Authors@R: c(
person("Michael", "Chirico", email = "[email protected]", role = c("aut", "cre")),
person("Jens", "Oehlschlägel", role = "aut"),
person("Leonardo", "Silvestri", role = "ctb"),
person("Ofek", "Shilon", role = "ctb")
)
Depends: R (>= 3.4.0), bit (>= 4.0.0)
Description:
Package 'bit64' provides serializable S3 atomic 64bit (signed) integers.
These are useful for handling database keys and exact counting in +-2^63.
WARNING: do not use them as replacement for 32bit integers, integer64 are not
supported for subscripting by R-core and they have different semantics when
combined with double, e.g. integer64 + double => integer64.
Class integer64 can be used in vectors, matrices, arrays and data.frames.
Methods are available for coercion from and to logicals, integers, doubles,
characters and factors as well as many elementwise and summary functions.
Many fast algorithmic operations such as 'match' and 'order' support inter-
active data exploration and manipulation and optionally leverage caching.
License: GPL-2 | GPL-3
LazyLoad: yes
ByteCompile: yes
URL: https://github.com/r-lib/bit64
Encoding: UTF-8
Imports: graphics, methods, stats, utils
Suggests:
testthat (>= 3.0.3),
withr
Config/testthat/edition: 3
Config/needs/development: testthat
RoxygenNote: 7.3.2
Roxygen: list(markdown = TRUE)