()
| 212 | } |
| 213 | |
| 214 | func (a *App) getScanCancelled() bool { |
| 215 | a.mu.Lock() |
| 216 | defer a.mu.Unlock() |
| 217 | return a.ScanCancelled |
| 218 | } |
| 219 | |
| 220 | func (a *App) binarySearch(primaryMods []string, groupMap map[string][]string, targetCount int) string { |
| 221 | current := make([]string, len(primaryMods)) |
no outgoing calls
no test coverage detected