mirror of https://github.com/portainer/portainer
12 lines
209 B
Go
12 lines
209 B
Go
|
package utils
|
||
|
|
||
|
// Contains returns true if the given int is contained in the given slice of int.
|
||
|
func Contains(s []int, e int) bool {
|
||
|
for _, a := range s {
|
||
|
if a == e {
|
||
|
return true
|
||
|
}
|
||
|
}
|
||
|
return false
|
||
|
}
|