This structure should be kept immutable.
| 12 | |
| 13 | // This structure should be kept immutable. |
| 14 | type node struct { |
| 15 | V string |
| 16 | Rev int64 |
| 17 | Ds map[string]node |
| 18 | } |
| 19 | |
| 20 | func (n node) String() string { |
| 21 | return "<node>" |
nothing calls this directly
no outgoing calls
no test coverage detected