blob: e9b7d1b2031bc3a471b66a68bcf4876876a969f0 [file] [log] [blame]
//go:build nobuild || OMIT
package main
import "golang.org/x/tour/tree"
// Walk walks the tree t sending all values
// from the tree to the channel ch.
func Walk(t *tree.Tree, ch chan int)
// Same determines whether the trees
// t1 and t2 contain the same values.
func Same(t1, t2 *tree.Tree) bool
func main() {
}