| 116 | ISO8601Parser() {} |
| 117 | |
| 118 | bool operator()(const char* s, size_t length, TimeUnit::type out_unit, int64_t* out, |
| 119 | bool* out_zone_offset_present = NULLPTR) const override { |
| 120 | return ParseTimestampISO8601(s, length, out_unit, out, out_zone_offset_present); |
| 121 | } |
| 122 | |
| 123 | const char* kind() const override { return "iso8601"; } |
| 124 | }; |
nothing calls this directly
no test coverage detected