use windex::HashBucketEntry;
pub fn make_key(prefix: &str, id: usize) -> Vec<u8> {
format!("{}_{}", prefix, id).into_bytes()
}
pub fn make_keys(prefix: &str, count: usize) -> Vec<Vec<u8>> {
(0..count).map(|id| make_key(prefix, id)).collect()
}
pub const fn make_address(high: u64, low: u64) -> u64 {
((high << 32) | (low & 0xFFFF_FFFF)) & HashBucketEntry::ADDRESS_MASK
}