[Rcpp-devel] Fwd: Extract names of functions in module
Hola Kwame Adrakey
hola at aims.ac.za
Wed Mar 21 23:01:56 CET 2018
---------- Forwarded message ----------
From: Hola Kwame Adrakey <hola at aims.ac.za>
Date: 20 March 2018 at 12:29
Subject: Extract names of functions in module
To: "rcpp-devel at lists.r-forge.r-project.org" <
rcpp-devel at lists.r-forge.r-project.org>
Dear all,
Can anyone give me advice/help on how to list the name(s) of all functions
defined within a module?
Here is an example of what I am trying to achieve:
Assuming that I have
inc <- '
using namespace Rcpp;
double SE(double alpha, double beta, double epsilon){
return alpha;
};
double EI(double alpha, double beta, double epsilon){
return beta*alpha;
};
RCPP_MODULE(yada){
function( "SE", &SE,
List::create(
_["alpha"],
_["beta"],
_["epsilon"],
_["..."]));
function( "EI", &EI,
List::create(
_["alpha"],
_["beta"],
_["epsilon"],
_["..."]));
}
'
and
fx <- cxxfunction(signature(), plugin="Rcpp", include=inc)
mod <- Module("yada", getDynLib(fx)).
I can access say, the function SE by mod$SE. However, if the functions
defined within the module are not known (user defined for instance), I can
only access them by knowing their names.
I am currently using names(mod at .xData$storage), but I have noticed that
there is a sort of randomness in its behavior, as, in some occasion, the
output is NULL.
Any help will be appreciated.
Best wishes,
--
Hola Kwame ADRAKEY
Research Associate
University of Cambridge ( www.c <http://www.hw.ac.uk>am.ac.uk)
Department of Plant Sciences
Epidemiology and Modeling group
Cambridge CB2 3EA UK
Direct tel :
Fax:
Cellphone :07712254353 <07712%20254353>
hA411 at cam.ac.uk <hola at aims.ac.za>
<http://www.hw.ac.uk>hola at aims.ac.za
<https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>
Virus-free.
www.avast.com
<https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>
<#m_8615427925884677836_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
--
Hola Kwame ADRAKEY
Research Associate
University of Cambridge ( www.c <http://www.hw.ac.uk>am.ac.uk)
Department of Plant Sciences
Epidemiology and Modeling group
Cambridge CB2 3EA UK
Direct tel :
Fax:
Cellphone :07712254353
hA411 at cam.ac.uk <hola at aims.ac.za>
<http://www.hw.ac.uk>hola at aims.ac.za
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.r-forge.r-project.org/pipermail/rcpp-devel/attachments/20180321/93d97538/attachment.html>
More information about the Rcpp-devel
mailing list