(pair uint64)
| 2525 | } |
| 2526 | |
| 2527 | func decodeIndex(pair uint64) (uint32, uint32) { |
| 2528 | k1 := uint32(pair >> 32) |
| 2529 | k2 := uint32(pair) & 0xFFFFFFFF |
| 2530 | return k1, k2 |
| 2531 | } |
| 2532 | |
| 2533 | func parseSubject(predSubject string) (uint64, error) { |
| 2534 | if strings.HasPrefix(predSubject, "_:") { |
no outgoing calls
no test coverage detected