We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e27a256 commit 4c40ad4Copy full SHA for 4c40ad4
ChangeLog
@@ -1,6 +1,10 @@
1
2026-04-09 Dirk Eddelbuettel <edd@debian.org>
2
3
* DESCRIPTION (Version, Date): Roll micro version and date
4
+2026-04-08 Dirk Eddelbuettel <edd@debian.org>
5
+
6
+ * inst/include/Rcpp/Nullable.h (as): Enhance by adding an explicit
7
+ Rcpp::as<T>() aiding cases where implicit as<> does not suffice
8
9
2026-04-07 Dirk Eddelbuettel <edd@debian.org>
10
inst/include/Rcpp/Nullable.h
@@ -126,7 +126,7 @@ namespace Rcpp {
126
/**
127
* Returns m_sexp as a T
128
*/
129
- inline T as() { return get(); }
+ inline T as() { return Rcpp::as<T>(get()); }
130
131
132
* Return a clone of m_sexp as a T
0 commit comments