Files
rippled/include/xrpl/json/Output.h
Copilot 820ca5b332 refactor: Convert boost::beast::string_view to std::string_view (#6306)
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: mvadari <8029314+mvadari@users.noreply.github.com>
Co-authored-by: Mayukha Vadari <mvadari@ripple.com>
Co-authored-by: Ayaz Salikhov <mathbunnyru@users.noreply.github.com>
Co-authored-by: xrplf-ai-reviewer[bot] <266832837+xrplf-ai-reviewer[bot]@users.noreply.github.com>
Co-authored-by: Mayukha Vadari <mvadari@gmail.com>
Co-authored-by: Timur Yalymov <36795566+tyalymov@users.noreply.github.com>
Co-authored-by: Cursor <cursoragent@cursor.com>
Co-authored-by: Vito Tumas <5780819+Tapanito@users.noreply.github.com>
2026-08-17 23:19:56 +00:00

38 lines
830 B
C++

#pragma once
#include <functional>
#include <string>
#include <string_view>
namespace json {
class Value;
using Output = std::function<void(std::string_view)>;
inline Output
stringOutput(std::string& s)
{
return [&](std::string_view b) { s.append(b.data(), b.size()); };
}
/**
* Writes a minimal representation of a Json value to an Output in O(n) time.
*
* Data is streamed right to the output, so only a marginal amount of memory is
* used. This can be very important for a very large json::Value.
*/
void
outputJson(json::Value const&, Output const&);
/**
* Return the minimal string representation of a json::Value in O(n) time.
*
* This requires a memory allocation for the full size of the output.
* If possible, use outputJson().
*/
std::string
jsonAsString(json::Value const&);
} // namespace json