woodpecker/vendor/github.com/golangci/golangci-lint/pkg/sliceutil/sliceutil.go
Lukas c28f7cb29f
Add golangci-lint (#502)
Initial part of #435
2021-11-14 21:01:54 +01:00

17 lines
383 B
Go

package sliceutil
// IndexOf get the index of the given value in the given string slice,
// or -1 if not found.
func IndexOf(slice []string, value string) int {
for i, v := range slice {
if v == value {
return i
}
}
return -1
}
// Contains check if a string slice contains a value.
func Contains(slice []string, value string) bool {
return IndexOf(slice, value) != -1
}