I have XML like this:
<list>
<entry><string>...</string><string>...</string></entry>
<entry><string>...</string><string></string></entry>
<entry><string>...</string><null/></entry>
<entry><string>...</string><string>...</string><null/></entry>
</list>
How to tell that I had a <null/>
element? This is the struct I'm trying to work with:
type Entry struct {
Values []string `xml:"string"`
Null string `xml:"null"`
}