SetIndent is documented at https://golang.org/pkg/encoding/json/#Encoder.SetIndent
(prefix, indent string)
| 552 | |
| 553 | // SetIndent is documented at https://golang.org/pkg/encoding/json/#Encoder.SetIndent |
| 554 | func (enc *Encoder) SetIndent(prefix, indent string) { |
| 555 | enc.prefix = prefix |
| 556 | enc.indent = indent |
| 557 | } |
| 558 | |
| 559 | // SetSortMapKeys is an extension to the standard encoding/json package which |
| 560 | // allows the program to toggle sorting of map keys on and off. |
no outgoing calls