DefaultString returns the default value for the setting as a string.
()
| 35 | |
| 36 | // DefaultString returns the default value for the setting as a string. |
| 37 | func (f *FloatSetting) DefaultString() string { |
| 38 | return EncodeFloat(f.defaultValue) |
| 39 | } |
| 40 | |
| 41 | // Encoded returns the encoded value of the current value of the setting. |
| 42 | func (f *FloatSetting) Encoded(sv *Values) string { |
nothing calls this directly
no test coverage detected