mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
13 lines
214 B
Go
13 lines
214 B
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
|
||
|
|
}
|