[[Rcpp::export]]
| 184 | |
| 185 | // [[Rcpp::export]] |
| 186 | std::string Date_ostream(Date d) { |
| 187 | std::stringstream os; |
| 188 | os << d; |
| 189 | return os.str(); |
| 190 | } |
| 191 | |
| 192 | // [[Rcpp::export]] |
| 193 | std::string Datetime_ostream(Datetime d) { |
nothing calls this directly
no outgoing calls
no test coverage detected