I am using the net/html package.
I try todo this:
```
doc, err := html.Parse(body)
if err != nil {
return
}
for n := range node.Descendants()
```
But i cant compile because Descendants isnt implemented on the Node.
I use:
- go version go1.22.3 windows/amd64
If i go trought the Code i see that Descendants is Implemented in a different File to the rest of the Node implementation.
Why does it not import the Iterator?