(lib: i32, reason: i32)
| 1766 | /// Helper function to create encoded key from (lib, reason) pair |
| 1767 | #[inline] |
| 1768 | pub fn encode_error_key(lib: i32, reason: i32) -> u64 { |
| 1769 | ((lib as u64) << 32) | (reason as u64 & 0xFFFFFFFF) |
| 1770 | } |
no outgoing calls
no test coverage detected