String is a helper routine that allocates a new string value to store v and returns a pointer to it.
(v string)
| 457 | // String is a helper routine that allocates a new string value |
| 458 | // to store v and returns a pointer to it. |
| 459 | func String(v string) *string { |
| 460 | return &v |
| 461 | } |
| 462 | |
| 463 | // EnumName is a helper function to simplify printing protocol buffer enums |
| 464 | // by name. Given an enum map and a value, it returns a useful string. |
no outgoing calls
searching dependent graphs…