(segs []int64)
| 181 | } |
| 182 | |
| 183 | func allZero(segs []int64) bool { |
| 184 | for _, s := range segs { |
| 185 | if s != 0 { |
| 186 | return false |
| 187 | } |
| 188 | } |
| 189 | return true |
| 190 | } |
| 191 | |
| 192 | func comparePart(preSelf string, preOther string) int { |
| 193 | if preSelf == preOther { |