11 lines
210 B
Go
11 lines
210 B
Go
package strings
|
|
|
|
// StringInSlice check whether string a is a member of slice.
|
|
func StringInSlice(a string, slice []string) bool {
|
|
for _, b := range slice {
|
|
if b == a {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|