numChildren returns the number of children.
()
| 86 | |
| 87 | // numChildren returns the number of children. |
| 88 | func (n *node) numChildren() int { |
| 89 | return len(n.inodes) |
| 90 | } |
| 91 | |
| 92 | // nextSibling returns the next node with the same parent. |
| 93 | func (n *node) nextSibling() *node { |
no outgoing calls
no test coverage detected