golang 的 rabbitmq 消费项目
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

string.go 157 B

11 달 전
12345678910
  1. package utils
  2. func ContainerStr(slice []string, element string) bool {
  3. for _, e := range slice {
  4. if e == element {
  5. return true
  6. }
  7. }
  8. return false
  9. }