mirror of
https://github.com/rjNemo/underscore
synced 2026-06-06 02:26:42 +00:00
13 lines
253 B
Go
13 lines
253 B
Go
package underscore
|
|
|
|
import "constraints"
|
|
|
|
// Contains returns true if the value is present in the slice
|
|
func Contains[T constraints.Ordered](values []T, value T) bool {
|
|
for _, v := range values {
|
|
if v == value {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|