type github.com/google/go-cmp/cmp/cmpopts.fieldTree

7 uses

	github.com/google/go-cmp/cmp/cmpopts (current package)
		struct_filter.go#L32: 	ft fieldTree    // Tree of fields to match on
		struct_filter.go#L47: 	var ft fieldTree
		struct_filter.go#L89: type fieldTree struct {
		struct_filter.go#L91: 	sub map[string]fieldTree // The sub-tree of fields under this node
		struct_filter.go#L95: func (ft *fieldTree) insert(cname []string) {
		struct_filter.go#L97: 		ft.sub = make(map[string]fieldTree)
		struct_filter.go#L110: func (ft fieldTree) matchPrefix(p cmp.Path) bool {