Supposons que j'ai ces types: type Attribute struct { Key, Val string } type Node struct { Attr []Attribute } et que je veux itérer sur les attributs de mon nœud pour les changer. J'aurais aimé pouvoir faire: for _, attr := range n.Attr { if attr.Key == "href" { attr.Val = "something" } } mais ce...