| 13983 | /// @sa https://fktn-k.github.io/fkYAML/api/basic_node/get_value_inplace/ |
| 13984 | template <typename T> |
| 13985 | void get_value_inplace(T& value_ref) const |
| 13986 | noexcept(noexcept(std::declval<const basic_node&>().template get_value_impl<T>(std::declval<T&>()))) { |
| 13987 | resolve_reference().get_value_impl(value_ref); |
| 13988 | } |
| 13989 | |
| 13990 | /// @brief Get the node value object converted to a given type. If the conversion fails, this function returns a |
| 13991 | /// given default value instead. |
nothing calls this directly
no test coverage detected