| 230 | |
| 231 | template <typename SetType> |
| 232 | Json jsonFromSet(SetType const& Set) { |
| 233 | return jsonFromSet<SetType>(Set, construct<Json>()); |
| 234 | } |
| 235 | |
| 236 | template <typename SetType, typename Converter> |
| 237 | Json jsonFromSet(SetType const& Set, Converter&& valueConvert) { |
no test coverage detected