func Contains[E comparable]()

in internal/slices/slices.go [26:33]


func Contains[E comparable](s []E, v E) bool {
	for _, vs := range s {
		if v == vs {
			return true
		}
	}
	return false
}