(a string, list []string)
| 112 | } |
| 113 | |
| 114 | func stringInSlice(a string, list []string) bool { |
| 115 | for _, b := range list { |
| 116 | if b == a { |
| 117 | return true |
| 118 | } |
| 119 | } |
| 120 | return false |
| 121 | } |
nothing calls this directly
no outgoing calls
no test coverage detected