MCPcopy Create free account
hub / github.com/PeterFWS/Structure-PLP-SLAM / to_json_tuple_impl

Function to_json_tuple_impl

3rd/json/include/nlohmann/json.hpp:2136–2139  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2134
2135template<typename BasicJsonType, typename Tuple, std::size_t... Idx>
2136void to_json_tuple_impl(BasicJsonType& j, const Tuple& t, index_sequence<Idx...> /*unused*/)
2137{
2138 j = { std::get<Idx>(t)... };
2139}
2140
2141template<typename BasicJsonType, typename... Args>
2142void to_json(BasicJsonType& j, const std::tuple<Args...>& t)

Callers 1

to_jsonFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected