(num1, num2 uint64)
| 467 | } |
| 468 | |
| 469 | func match32MSB(num1, num2 uint64) bool { |
| 470 | return (num1 & bitMask) == (num2 & bitMask) |
| 471 | } |
| 472 | |
| 473 | // CopyUidPack creates a copy of the given UidPack. |
| 474 | func CopyUidPack(pack *pb.UidPack) *pb.UidPack { |
no outgoing calls
no test coverage detected
searching dependent graphs…