MCPcopy Create free account
hub / github.com/Tessil/ordered-map / deserialize_impl

Method deserialize_impl

tests/utils.h:318–322  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

316 template <class T,
317 typename std::enable_if<is_pair<T>::value>::type* = nullptr>
318 T deserialize_impl() {
319 auto first = deserialize_impl<typename T::first_type>();
320 return std::make_pair(std::move(first),
321 deserialize_impl<typename T::second_type>());
322 }
323
324 template <class T, typename std::enable_if<
325 std::is_same<std::string, T>::value>::type* = nullptr>

Callers

nothing calls this directly

Calls 3

move_only_testClass · 0.85
dataMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected