Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for unmarshalInterface (0.22 sec)

  1. src/encoding/xml/read.go

    	t := reflect.TypeOf(val)
    	if t.Name() != "" {
    		return t.String()
    	}
    	return "(" + t.String() + ")"
    }
    
    // unmarshalInterface unmarshals a single XML element into val.
    // start is the opening tag of the element.
    func (d *Decoder) unmarshalInterface(val Unmarshaler, start *StartElement) error {
    	// Record that decoder must stop at end tag corresponding to start.
    	d.pushEOF()
    
    	d.unmarshalDepth++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 22.4K bytes
    - Viewed (0)
Back to top