Skip to content

Commit 3a44192

Browse files
committed
Add myself as a contributor
1 parent d251aaf commit 3a44192

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

DESCRIPTION

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ Authors@R: c(
77
person("Romain", "Francois", role = "aut", email = "romain@r-enthusiasts.com"),
88
person("JJ", "Allaire", role = "ctb", email = "jj.allaire@gmail.com"),
99
person("John", "Chambers", role = "ctb", email = "jmc@r-project.org"),
10-
person("Douglas", "Bates", role = "ctb", email = "bates@stat.wisc.edu")
10+
person("Douglas", "Bates", role = "ctb", email = "bates@stat.wisc.edu"),
11+
person("Kevin", "Ushey", role = "ctb", email = "kevinushey@gmail.com")
1112
)
1213
Description: The Rcpp package provides R functions as well as a C++ library
1314
which facilitate the integration of R and C++.
@@ -18,15 +19,15 @@ Description: The Rcpp package provides R functions as well as a C++ library
1819
represented as instances of the Rcpp::NumericVector class, environments are
1920
represented as instances of Rcpp::Environment, functions are represented as
2021
Rcpp::Function, etc ... The "Rcpp-introduction" vignette provides a good
21-
entry point to Rcpp.
22+
entry point to Rcpp.
2223
.
23-
Conversion from C++ to R and back is driven by the templates Rcpp::wrap
24+
Conversion from C++ to R and back is driven by the templates Rcpp::wrap
2425
and Rcpp::as which are highly flexible and extensible, as documented
2526
in the "Rcpp-extending" vignette.
2627
.
27-
Rcpp also provides Rcpp modules, a framework that allows exposing
28+
Rcpp also provides Rcpp modules, a framework that allows exposing
2829
C++ functions and classes to the R level. The "Rcpp-modules" vignette
29-
details the current set of features of Rcpp-modules.
30+
details the current set of features of Rcpp-modules.
3031
.
3132
Rcpp includes a concept called Rcpp sugar that brings many R functions
3233
into C++. Sugar takes advantage of lazy evaluation and expression templates
@@ -47,11 +48,11 @@ Description: The Rcpp package provides R functions as well as a C++ library
4748
An earlier version of Rcpp, containing what we now call the 'classic Rcpp
4849
API' was written during 2005 and 2006 by Dominick Samperi. This code has
4950
been factored out of Rcpp into the package RcppClassic, and it is still
50-
available for code relying on the older interface. New development should
51+
available for code relying on the older interface. New development should
5152
always use this Rcpp package instead.
5253
.
5354
Additional documentation is available via the paper by Eddelbuettel and
54-
Francois (2011, JSS) paper and the book by Eddelbuettel (2013, Springer);
55+
Francois (2011, JSS) paper and the book by Eddelbuettel (2013, Springer);
5556
see 'citation("Rcpp")' for details.
5657
Depends: R (>= 3.0.0)
5758
Imports: methods

0 commit comments

Comments
 (0)