Uint32 stores v in a new uint32 value and returns a pointer to it.
(v uint32)
| 20 | |
| 21 | // Uint32 stores v in a new uint32 value and returns a pointer to it. |
| 22 | func Uint32(v uint32) *uint32 { return &v } |
| 23 | |
| 24 | // Uint64 stores v in a new uint64 value and returns a pointer to it. |
| 25 | func Uint64(v uint64) *uint64 { return &v } |
no outgoing calls