NewInt64Ref returns a reference to a int64 with given value
(v int64)
| 2 | |
| 3 | // NewInt64Ref returns a reference to a int64 with given value |
| 4 | func NewInt64Ref(v int64) *int64 { |
| 5 | return &v |
| 6 | } |
| 7 | |
| 8 | // Int64Value returns the value of the given bool ref |
| 9 | func Int64Value(r *int64) int64 { |
no outgoing calls
no test coverage detected