Encoded returns the encoded value of the current value of the setting.
(sv *Values)
| 40 | |
| 41 | // Encoded returns the encoded value of the current value of the setting. |
| 42 | func (f *FloatSetting) Encoded(sv *Values) string { |
| 43 | return f.String(sv) |
| 44 | } |
| 45 | |
| 46 | // EncodedDefault returns the encoded value of the default value of the setting. |
| 47 | func (f *FloatSetting) EncodedDefault() string { |