Files
gluetun/internal/configuration/settings/helpers/belong.go
2023-05-25 12:08:43 +00:00

11 lines
174 B
Go

package helpers
func IsOneOf[T comparable](value T, choices ...T) (ok bool) {
for _, choice := range choices {
if value == choice {
return true
}
}
return false
}