forked from StrafesNET/strafe-project
21 lines
288 B
Rust
21 lines
288 B
Rust
#[cfg(feature="fixed_wide")]
|
|
pub mod fixed_wide;
|
|
|
|
pub mod common;
|
|
pub mod vector;
|
|
pub mod matrix;
|
|
|
|
#[doc(hidden)]
|
|
#[macro_export(local_inner_macros)]
|
|
macro_rules! macro_repeated{
|
|
(
|
|
$macro:ident,
|
|
$any:tt,
|
|
$($repeated:tt),*
|
|
)=>{
|
|
$(
|
|
$crate::$macro!($any, $repeated);
|
|
)*
|
|
};
|
|
}
|