-
Notifications
You must be signed in to change notification settings - Fork 0
/
DESCRIPTION
32 lines (32 loc) · 1.14 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
Package: strider
Type: Package
Title: Strided Iterator and Range
Version: 1.3
Date: 2020-6-1
Authors@R: person("Tim", "Keitt", email = "tkeitt@gmail.com", role = c("aut", "cre"))
Description: The strided iterator adapts multidimensional buffers to work with
the C++ standard library and range-based for-loops. Given a pointer or iterator
into a multidimensional data buffer, one can generate an iterator range using
make_strided to construct strided versions of the standard library's begin and
end. For constructing range-based for-loops, a strided_range class is provided.
These help authors to avoid integer-based indexing, which in some cases can impede
algorithm performance and introduce indexing errors. This library exists
primarily to expose the header file to other R projects.
License: MIT + file LICENSE
Imports: Rcpp (>= 0.12.13)
LinkingTo: Rcpp, BH
Suggests:
knitr,
rmarkdown,
testthat,
microbenchmark,
ggplot2,
dplyr,
covr,
BH
VignetteBuilder: knitr
URL: https://github.com/thk686/strider
BugReports: https://github.com/thk686/strider/issues
SystemRequirements: C++11
RoxygenNote: 6.1.1
Encoding: UTF-8