String is a helper routine that allocates a new string value to store v and returns a pointer to it.
(v string)
| 117 | // String is a helper routine that allocates a new string value |
| 118 | // to store v and returns a pointer to it. |
| 119 | func String(v string) *string { return &v } |
no outgoing calls
no test coverage detected