MCPcopy Create free account
hub / github.com/DBraun/DawDreamer / toString

Method toString

JuceLibraryCode/modules/juce_core/javascript/juce_JSON.cpp:503–508  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

501}
502
503String JSON::toString (const var& data, const bool allOnOneLine, int maximumDecimalPlaces)
504{
505 MemoryOutputStream mo (1024);
506 JSONFormatter::write (mo, data, 0, allOnOneLine, maximumDecimalPlaces);
507 return mo.toUTF8();
508}
509
510void JSON::writeToStream (OutputStream& output, const var& data, const bool allOnOneLine, int maximumDecimalPlaces)
511{

Callers 15

writeMethod · 0.45
escapeStringMethod · 0.45
pullTypedMethod · 0.45
fromVarMethod · 0.45
findFunctionCallFunction · 0.45
getResultMethod · 0.45
getResultMethod · 0.45
parseIdentifierMethod · 0.45
parseFactorMethod · 0.45
getStringMethod · 0.45
joinMethod · 0.45

Calls 2

writeFunction · 0.50
toUTF8Method · 0.45

Tested by

no test coverage detected