MCPcopy Create free account
hub / github.com/1a1a11a/libCacheSim / get_value_impl

Function get_value_impl

example/cacheHierarchy/fkYAML/node.hpp:14438–14441  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14436 template <
14437 typename ValueType, detail::enable_if_t<detail::negation<detail::is_basic_node<ValueType>>::value, int> = 0>
14438 void get_value_impl(ValueType& v) const
14439 noexcept(noexcept(ConverterType<ValueType, void>::from_node(std::declval<const basic_node&>(), v))) {
14440 ConverterType<ValueType, void>::from_node(*this, v);
14441 }
14442
14443 template <typename ValueType, detail::enable_if_t<detail::is_basic_node<ValueType>::value, int> = 0>
14444 void get_value_impl(ValueType& v) const {

Callers

nothing calls this directly

Calls 2

noexceptFunction · 0.85
from_nodeFunction · 0.85

Tested by

no test coverage detected