Uint64 stores v in a new uint64 value and returns a pointer to it.
(v uint64)
| 23 | |
| 24 | // Uint64 stores v in a new uint64 value and returns a pointer to it. |
| 25 | func Uint64(v uint64) *uint64 { return &v } |
| 26 | |
| 27 | // Float32 stores v in a new float32 value and returns a pointer to it. |
| 28 | func Float32(v float32) *float32 { return &v } |
no outgoing calls