MCPcopy Create free account
hub / github.com/cinemast/libjson-rpc-cpp / toString

Method toString

src/jsonrpccpp/client/batchcall.cpp:36–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34}
35
36string BatchCall::toString(bool fast) const {
37 string result;
38 if (fast) {
39 Json::StreamWriterBuilder wbuilder;
40 wbuilder["indentation"] = "";
41 result = Json::writeString(wbuilder, this->result);
42 } else {
43 Json::StreamWriterBuilder wbuilder;
44 result = Json::writeString(wbuilder, this->result);
45 }
46 return result;
47}

Callers 1

CallProceduresMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected