Int64 stores v in a new int64 value and returns a pointer to it.
(v int64)
| 17 | |
| 18 | // Int64 stores v in a new int64 value and returns a pointer to it. |
| 19 | func Int64(v int64) *int64 { return &v } |
| 20 | |
| 21 | // Uint32 stores v in a new uint32 value and returns a pointer to it. |
| 22 | func Uint32(v uint32) *uint32 { return &v } |
no outgoing calls