| 23 | namespace Rcpp { |
| 24 | |
| 25 | inline Datetime::Datetime(SEXP d) { |
| 26 | m_dt = Rcpp::as<double>(d); |
| 27 | update_tm(); |
| 28 | } |
| 29 | |
| 30 | inline Datetime::Datetime(const std::string &s, const std::string &fmt) { |
| 31 | Rcpp::Function strptime("strptime"); // we cheat and call strptime() from R |
nothing calls this directly
no outgoing calls
no test coverage detected