0
votes

I would like, with Roxygen2 7.0.2, export a s3 method for t.test. But if I use @export on a function named t.test.classname, Roxygen2 writes a "test.classname" method for t in the NAMESPACE, which is not what is expected.

It writes : S3method(t,test.classname)

I would like : S3method(t.test,classname)

How to specify it clearly ?

Thanks.

1
I updated to 7.1.0, no changes in sightArnaud Feldmann

1 Answers

0
votes

It's not exactly classy, but I managed to do the solve the problem writing :

#' @rawNamespace S3method(t.test,classname)