Esempio n. 1
0
func cloneTree(a llrb.Tree) llrb.Tree {
	var newTree = llrb.Tree{Count: a.Count}
	newTree.Root = cloneNode(a.Root)
	return newTree
}