MCPcopy Create free account
hub / github.com/bblanchon/ArduinoJson / adaptString

Function adaptString

src/ArduinoJson/Strings/StringAdapter.hpp:33–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31
32template <typename TString>
33AdaptedString<TString> adaptString(TString&& s) {
34 return StringAdapterFor<TString>::adapt(detail::forward<TString>(s));
35}
36
37template <typename TChar, enable_if_t<!is_const<TChar>::value, int> = 0>
38AdaptedString<TChar*> adaptString(TChar* p) {

Callers 15

saveFunction · 0.85
saveFunction · 0.85
StringBuffer.hppFile · 0.85
getFunction · 0.85
parseObjectFunction · 0.85
containsKeyFunction · 0.85
operator[]Function · 0.85
removeFunction · 0.85
removeFunction · 0.85
toJsonMethod · 0.85
toJsonMethod · 0.85
convertToJsonFunction · 0.85

Calls 1

adaptFunction · 0.85

Tested by 1

saveStringFunction · 0.68