mirror of
				https://github.com/coredns/coredns.git
				synced 2025-10-31 10:13:14 -04:00 
			
		
		
		
	
		
			
	
	
		
			12 lines
		
	
	
		
			210 B
		
	
	
	
		
			Go
		
	
	
	
	
	
		
		
			
		
	
	
			12 lines
		
	
	
		
			210 B
		
	
	
	
		
			Go
		
	
	
	
	
	
|  | package strings
 | ||
|  | 
 | ||
|  | // StringInSlice check whether string a is a member of slice.
 | ||
|  | func StringInSlice(a string, slice []string) bool {
 | ||
|  | 	for _, b := range slice {
 | ||
|  | 		if b == a {
 | ||
|  | 			return true
 | ||
|  | 		}
 | ||
|  | 	}
 | ||
|  | 	return false
 | ||
|  | }
 |