' @param foo // don't do anything to this ' // or this ' @param bar " // or this guy " [[Rcpp::export]] // this comment marks the following function for export
| 9 | //' @param bar " // or this guy " |
| 10 | // [[Rcpp::export]] // this comment marks the following function for export |
| 11 | std::string comments_test( /// // "\""" some '"// more / // ///garbge" |
| 12 | std::string msg = "Start a C++ line comment with the characters \"//\"" // "" \" "" |
| 13 | ) { // """ |
| 14 | return msg; |
| 15 | } |
| 16 | |
| 17 | std::string parse_declaration_test(std::string msg) { |
| 18 | return msg; |
nothing calls this directly
no outgoing calls
no test coverage detected