filebrowser/_stuff/tools/variables/strings.go

11 lines
161 B
Go
Raw Normal View History

2016-06-21 14:28:15 +00:00
package variables
func StringInSlice(a string, list []string) (bool, int) {
for i, b := range list {
if b == a {
return true, i
}
}
return false, 0
}