(a map[string]node)
| 89 | |
| 90 | |
| 91 | func copyMap(a map[string]node) map[string]node { |
| 92 | b := make(map[string]node) |
| 93 | for k, v := range a { |
| 94 | b[k] = v |
| 95 | } |
| 96 | return b |
| 97 | } |
| 98 | |
| 99 | // Return value is replacement node |
| 100 | func (n node) set(parts []string, v string, rev int64, keep bool) (node, bool) { |