I want to export an S3method named [.myclass using roxygen2 and I can\'t see a clean way to do this.
I need NAMESPACE to have
S3method(\"[\",myclass)
Answer:
Hadley was incredibly helpful and now I realize that I shouldn't be using setMethodS3 but instead just
#' @method [ myclass #' @export "[.myclass" <- function(x,i) { blah blah blah }
and then everything works great.