blob: 33de49e17ff43dc0bd29dbffeadcd199069709ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//@ skip
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!();
}
|