| 437 | } // namespace |
| 438 | |
| 439 | Status PrettyPrint(const Array& arr, int indent, std::ostream* sink) { |
| 440 | PrettyPrintOptions options; |
| 441 | options.indent = indent; |
| 442 | ArrayPrinter printer(options, sink); |
| 443 | return printer.Print(arr); |
| 444 | } |
| 445 | |
| 446 | Status PrettyPrint(const Array& arr, const PrettyPrintOptions& options, |
| 447 | std::ostream* sink) { |