1
0
mirror of https://github.com/Luzifer/promcertcheck.git synced 2024-09-20 01:42:56 +00:00
promcertcheck/vendor/github.com/Luzifer/go_helpers/str/slice.go
Knut Ahlers 1d1fbb1f43
Some refactorings
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2018-06-04 11:49:36 +02:00

22 lines
429 B
Go

package str
// AppendIfMissing adds a string to a slice when it's not present yet
func AppendIfMissing(slice []string, s string) []string {
for _, e := range slice {
if e == s {
return slice
}
}
return append(slice, s)
}
// StringInSlice checks for the existence of a string in the slice
func StringInSlice(a string, list []string) bool {
for _, b := range list {
if b == a {
return true
}
}
return false
}