MCPcopy Create free account
hub / github.com/cinder/Cinder / to_string

Method to_string

include/nlohmann/detail/json_pointer.hpp:37–45  ·  view source on GitHub ↗

@brief return a string representation of the JSON pointer @sa https://json.nlohmann.me/api/json_pointer/to_string/

Source from the content-addressed store, hash-verified

35 /// @brief return a string representation of the JSON pointer
36 /// @sa https://json.nlohmann.me/api/json_pointer/to_string/
37 std::string to_string() const
38 {
39 return std::accumulate(reference_tokens.begin(), reference_tokens.end(),
40 std::string{},
41 [](const std::string & a, const std::string & b)
42 {
43 return a + "/" + detail::escape(b);
44 });
45 }
46
47 /// @brief return a string representation of the JSON pointer
48 /// @sa https://json.nlohmann.me/api/json_pointer/operator_string/

Callers 13

handleMessageMethod · 0.80
setupMethod · 0.80
setupMethod · 0.80
setupUdpMethod · 0.80
listenMethod · 0.80
readMethod · 0.80
stringFunction · 0.80
network_v4.hppFile · 0.80
address.hppFile · 0.80
network_v6.hppFile · 0.80
address_v4.hppFile · 0.80
basic_endpoint.hppFile · 0.80

Calls 3

escapeFunction · 0.85
beginMethod · 0.45
endMethod · 0.45

Tested by 1

setupUdpMethod · 0.64