String is used to represent a string that may be null.
| 139 | |
| 140 | // String is used to represent a string that may be null. |
| 141 | type String struct { |
| 142 | Valid bool |
| 143 | String string |
| 144 | } |
| 145 | |
| 146 | // NewString turns a string into a valid null.String. |
| 147 | func NewString(value string) String { |
nothing calls this directly
no outgoing calls
no test coverage detected