Skip to content
Extraits de code Groupes Projets
Sélectionner une révision Git
  • e0b9da13093bdffda423d1b3524ffb558f438728
  • master par défaut protégée
2 résultats

utils.go

Blame
  • utils.go 164 o
    package irc
    
    func FindChannel(channels []string, needle string) int {
    	for i, channel := range channels {
    		if channel == needle {
    			return i
    		}
    	}
    
    	return -1
    }