File: child.go

package info (click to toggle)
mumax3 3.10-9
  • links: PTS, VCS
  • area: contrib
  • in suites: trixie
  • size: 7,596 kB
  • sloc: makefile: 181; ansic: 155; sh: 77
file content (15 lines) | stat: -rw-r--r-- 231 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package script

func Contains(tree, search Expr) bool {
	if tree == search {
		return true
	} else {
		children := tree.Child()
		for _, e := range children {
			if Contains(e, search) {
				return true
			}
		}
	}
	return false
}