Add Hardware Abstraction Layer (#56)

This commit is contained in:
Jean-Philippe Bossuat
2025-08-08 19:22:42 +02:00
committed by GitHub
parent 833520b163
commit 0e0745065e
194 changed files with 17397 additions and 11955 deletions

View File

@@ -1,6 +1,7 @@
use fnv::FnvHashMap;
use std::hash::Hash;
use fnv::FnvHashMap;
pub struct Map<K, V>(pub FnvHashMap<K, V>);
impl<K: Eq + Hash, V> Map<K, V> {