go p1 源码
golang p1 代码
文件路径:/test/fixedbugs/issue4326.dir/p1.go
package p1
type O map[string]map[string]string
func (opts O) RemoveOption(sect, opt string) bool {
if _, ok := opts[sect]; !ok {
return false
}
_, ok := opts[sect][opt]
delete(opts[sect], opt)
return ok
}
相关信息
相关文章
0
赞