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

Function serialize

src/ArduinoJson/Serialization/serialize.hpp:20–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18
19template <template <typename> class TSerializer, typename TDestination>
20size_t serialize(ArduinoJson::JsonVariantConst source,
21 TDestination& destination) {
22 Writer<TDestination> writer(destination);
23 return doSerialize<TSerializer>(source, writer);
24}
25
26template <template <typename> class TSerializer>
27enable_if_t<!TSerializer<StaticStringWriter>::producesText, size_t> serialize(

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected