Int32 stores v in a new int32 value and returns a pointer to it.
(v int32)
| 14 | |
| 15 | // Int32 stores v in a new int32 value and returns a pointer to it. |
| 16 | func Int32(v int32) *int32 { return &v } |
| 17 | |
| 18 | // Int64 stores v in a new int64 value and returns a pointer to it. |
| 19 | func Int64(v int64) *int64 { return &v } |
no outgoing calls