type encoding/xml.Encoder

10 uses

	encoding/xml (current package)
		marshal.go#L104: 	MarshalXML(e *Encoder, start StartElement) error
		marshal.go#L136: type Encoder struct {
		marshal.go#L141: func NewEncoder(w io.Writer) *Encoder {
		marshal.go#L142: 	e := &Encoder{printer{Writer: bufio.NewWriter(w)}}
		marshal.go#L150: func (enc *Encoder) Indent(prefix, indent string) {
		marshal.go#L161: func (enc *Encoder) Encode(v any) error {
		marshal.go#L176: func (enc *Encoder) EncodeElement(v any, start StartElement) error {
		marshal.go#L202: func (enc *Encoder) EncodeToken(t Token) error {
		marshal.go#L299: func (enc *Encoder) Flush() error {
		marshal.go#L305: 	encoder    *Encoder