tendermint/libs/common/int.go

12 lines
190 B
Go

package common
// 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
}