<div dir="ltr">I am exposing a c++ class using Rcpp. It works fantastic, but my problem is how to implement a method which has default params. I have the class:<div><br></div><div>class myClass {</div><div><br></div><div>    public:</div><div>    </div><div>        int myMethod(int param1, int param2 = 0);</div><div>}</div><div><br></div><div>and I config the module:</div><div><br></div><div>RCPP_MODULE(mymodule) {</div><div>    class_<myClass>("myClass")</div><div>        .constructor()</div><div>        .method("myMethod", &myClass::myMethod)</div><div>;</div><div>}</div><div><br></div><div>When I try to execute the function in R passing only the mandatory param I get an error because R does not recognize the function, but if I execute it with both params, it works great. So, how can I define the method in order to be able to execute it without informing the optional params?</div><div><br></div><div>Thank you,</div><div><br></div><div>Sergio</div></div>