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.
()
| 117 | // String is the method to format the param's value, part of the flag.Value interface. |
| 118 | // The String method's output will be used in diagnostics. |
| 119 | func (s *SBool) String() string { |
| 120 | return fmt.Sprint(*s) |
| 121 | } |
| 122 | |
| 123 | // Set is the method to set the param value, part of the flag.Value interface. |
| 124 | // Set's argument is a string to be parsed to set the param. |
nothing calls this directly
no outgoing calls
no test coverage detected