Undocumented reports whether this is an undocumented setting.
()
| 84 | |
| 85 | // Undocumented reports whether this is an undocumented setting. |
| 86 | func (s *Setting) Undocumented() bool { |
| 87 | return s.name != "" && s.name[0] == '#' |
| 88 | } |
| 89 | |
| 90 | // String returns a printable form for the setting: name=value. |
| 91 | func (s *Setting) String() string { |