[[Rcpp::export]]
| 191 | |
| 192 | // [[Rcpp::export]] |
| 193 | std::string Datetime_ostream(Datetime d) { |
| 194 | std::stringstream os; |
| 195 | os << d; |
| 196 | return os.str(); |
| 197 | } |
| 198 | |
| 199 | // [[Rcpp::export]] |
| 200 | Date gmtime_mktime(Date d) { |
nothing calls this directly
no outgoing calls
no test coverage detected