Bool stores v in a new bool value and returns a pointer to it.
(v bool)
| 6 | |
| 7 | // Bool stores v in a new bool value and returns a pointer to it. |
| 8 | func Bool(v bool) *bool { return &v } |
| 9 | |
| 10 | // Int stores v in a new int32 value and returns a pointer to it. |
| 11 | // |
no outgoing calls