Skip to main content

poulpy_cpu_ref/hal_impl/
module.rs

1#[macro_export]
2macro_rules! hal_impl_module {
3    ($defaults:ident) => {
4        fn new(n: u64) -> Module<Self> {
5            <Self as $defaults<Self>>::module_new_default(n)
6        }
7    };
8}