| 70 | template <typename T, |
| 71 | detail::enable_if_t<ConversionSupported<T>::value, int> = 0> |
| 72 | T as() const { |
| 73 | return Converter<T>::fromJson(*this); |
| 74 | } |
| 75 | |
| 76 | // Invalid conversion. Will not compile. |
| 77 | template <typename T, |
nothing calls this directly
no test coverage detected