String returns a printable form for the setting: name=value.
()
| 89 | |
| 90 | // String returns a printable form for the setting: name=value. |
| 91 | func (s *Setting) String() string { |
| 92 | return s.Name() + "=" + s.Value() |
| 93 | } |
| 94 | |
| 95 | // IncNonDefault increments the non-default behavior counter |
| 96 | // associated with the given setting. |