SelectElements finds child elements with the specified name.
(name string)
| 12 | |
| 13 | // SelectElements finds child elements with the specified name. |
| 14 | func (n *Node) SelectElements(name string) []*Node { |
| 15 | return Find(n, name) |
| 16 | } |
| 17 | |
| 18 | // SelectElement finds child elements with the specified name. |
| 19 | func (n *Node) SelectElement(name string) *Node { |