package commonlogic func ContainsInt64(a []int64, b int64) bool { for _, v := range a { if v == b { return true } } return false }