package otherutils func Contain[T int | int64](pool []T, item T) bool { for _, v := range pool { if v == item { return true } } return false }