String is the method to format the param's value, part of the flag.Value interface. The String method's output will be used in diagnostics.
()
| 393 | // String is the method to format the param's value, part of the flag.Value interface. |
| 394 | // The String method's output will be used in diagnostics. |
| 395 | func (s *SFloat64) String() string { |
| 396 | return fmt.Sprintf("%f", *s) |
| 397 | } |
| 398 | |
| 399 | // Set is the method to set the param value, part of the flag.Value interface. |
| 400 | // Set's argument is a string to be parsed to set the param. |
nothing calls this directly
no outgoing calls
no test coverage detected