(x, y []uint32)
| 48 | } |
| 49 | |
| 50 | func equalList(x, y []uint32) bool { |
| 51 | if len(x) != len(y) { |
| 52 | return false |
| 53 | } |
| 54 | for i, xi := range x { |
| 55 | if xi != y[i] { |
| 56 | return false |
| 57 | } |
| 58 | } |
| 59 | return true |
| 60 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…