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.
()
| 352 | // String is the method to format the param's value, part of the flag.Value interface. |
| 353 | // The String method's output will be used in diagnostics. |
| 354 | func (s *SString) String() string { |
| 355 | return strings.Join(*s, ",") |
| 356 | } |
| 357 | |
| 358 | // Set is the method to set the param value, part of the flag.Value interface. |
| 359 | // Set's argument is a string to be parsed to set the param. |
nothing calls this directly
no outgoing calls
no test coverage detected