...

Source file src/edge-infra.dev/pkg/lib/ini/helper.go

Documentation: edge-infra.dev/pkg/lib/ini

     1  package ini
     2  
     3  func inSlice(str string, s []string) bool {
     4  	for _, v := range s {
     5  		if str == v {
     6  			return true
     7  		}
     8  	}
     9  	return false
    10  }
    11  

View as plain text