Files
2022-07-21 19:39:17 -04:00

12 lines
186 B
Go

package kv
// IntInSlice returns true if a is found in the list.
func intInSlice(a int, list []int) bool {
for _, b := range list {
if b == a {
return true
}
}
return false
}