| 87 | } |
| 88 | |
| 89 | type TaskList interface { |
| 90 | TaskNode |
| 91 | |
| 92 | Title() string |
| 93 | SetTitle(title string) |
| 94 | |
| 95 | Find(index string) Task |
| 96 | FindAll(predicate func(node Task) bool) []Task |
| 97 | } |
| 98 | |
| 99 | // Index referencing a task |
| 100 | type Index []int |
no outgoing calls
no test coverage detected