ToInt64 returns a pointer to the passed int64 value.
(i int64)
| 70 | |
| 71 | // ToInt64 returns a pointer to the passed int64 value. |
| 72 | func ToInt64(i int64) *int64 { |
| 73 | return &i |
| 74 | } |
| 75 | |
| 76 | // ToRune returns a pointer to the passed rune value. |
| 77 | func ToRune(r rune) *rune { |