| 92 | // Implicit constructor: anything with a to_json() function. |
| 93 | template <class T, class = decltype(&T::to_json)> |
| 94 | Json(const T & t) : Json(t.to_json()) {} |
| 95 | |
| 96 | // Implicit constructor: map-like objects (std::map, std::unordered_map, etc) |
| 97 | template <class M, typename std::enable_if< |