(left, right *int64)
| 1463 | } |
| 1464 | |
| 1465 | func equalInt64Ptr(left, right *int64) bool { |
| 1466 | switch { |
| 1467 | case left == nil && right == nil: |
| 1468 | return true |
| 1469 | case left == nil || right == nil: |
| 1470 | return false |
| 1471 | default: |
| 1472 | return *left == *right |
| 1473 | } |
| 1474 | } |
| 1475 | |
| 1476 | func assetIDSet(assets []model.Asset) map[string]struct{} { |
| 1477 | result := make(map[string]struct{}, len(assets)) |
no outgoing calls
no test coverage detected