Serialize V to compact JSON on OS.
Declared in <llvm/Support/JSON.h>
llvm::raw_ostream&
operator<<(
llvm::raw_ostream& OS,
Value const& V);
The formatting is compact (no extra whitespace) and deterministic. For pretty-printing, use the formatv() format_provider below.
OS after writing compact JSON for V.
| Name | Description |
|---|---|
| OS | Stream to write JSON to. |
| V | Value to serialize. |