blob: cd7b481f11c9c7fb5b39771e49887a7ab463e4f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
use crate::hashmap::*;
/// Serialize a hash map - we don't have traits, so we fix the type of the
/// values (this is not the interesting part anyway)
pub(crate) fn serialize(_hm: HashMap<u64>) {
unimplemented!();
}
/// Deserialize a hash map - we don't have traits, so we fix the type of the
/// values (this is not the interesting part anyway)
pub(crate) fn deserialize() -> HashMap<u64> {
unimplemented!();
}
|