mirror of
https://github.com/rjNemo/underscore
synced 2026-06-06 02:26:42 +00:00
10 lines
157 B
Go
10 lines
157 B
Go
package underscore
|
|
|
|
func Contains[T numbers](values []T, value T) bool {
|
|
for _, v := range values {
|
|
if v == value {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|