-
-
Notifications
You must be signed in to change notification settings - Fork 219
Closed
Description
I would like to add two convenience member functions to Rcpp::Nullable<T>
specifically:
T Nullable::as()
{
return T(m_sexp);
}
T Nullable::clone() const
{
return T(Rcpp:::clone(m_sexp));
}
These are analogous to the Rcpp::as
and Rcpp::clone
functions and just add convenience to the Nullable
class.
Any objections?
Metadata
Metadata
Assignees
Labels
No labels