(value *int64)
| 1455 | } |
| 1456 | |
| 1457 | func cloneInt64Ptr(value *int64) *int64 { |
| 1458 | if value == nil { |
| 1459 | return nil |
| 1460 | } |
| 1461 | cloned := *value |
| 1462 | return &cloned |
| 1463 | } |
| 1464 | |
| 1465 | func equalInt64Ptr(left, right *int64) bool { |
| 1466 | switch { |
no outgoing calls
no test coverage detected