Set will set a value (Primative or Section) to the provided name
(name string, value Value)
| 224 | |
| 225 | // Set will set a value (Primative or Section) to the provided name |
| 226 | func (section *Section) Set(name string, value Value) { |
| 227 | section.values[name] = value |
| 228 | } |
| 229 | |
| 230 | // SetBoolean will set the value for name as a bool |
| 231 | func (section *Section) SetBoolean(name string, value bool) { |