github.com/ccccaoqing/test@v0.0.0-20220510085219-3985d23445c0/test/fixedbugs/issue4326.dir/p1.go (about)

     1  package p1
     2  
     3  type O map[string]map[string]string
     4  
     5  func (opts O) RemoveOption(sect, opt string) bool {
     6  	if _, ok := opts[sect]; !ok {
     7  		return false
     8  	}
     9  	_, ok := opts[sect][opt]
    10  	delete(opts[sect], opt)
    11  	return ok
    12  }