Implements comparison for KSUID type
(a, b KSUID)
| 277 | |
| 278 | // Implements comparison for KSUID type |
| 279 | func Compare(a, b KSUID) int { |
| 280 | return bytes.Compare(a[:], b[:]) |
| 281 | } |
| 282 | |
| 283 | // Sorts the given slice of KSUIDs |
| 284 | func Sort(ids []KSUID) { |
no outgoing calls
searching dependent graphs…