String returns the string output of the XML encoder
()
| 36 | |
| 37 | // String returns the string output of the XML encoder |
| 38 | func (e Encoder) String() string { |
| 39 | return e.w.String() |
| 40 | } |
| 41 | |
| 42 | // Bytes returns the []byte slice of the XML encoder |
| 43 | func (e Encoder) Bytes() []byte { |