strafe-project/fixed_wide_vectors/src/macros/mod.rs

21 lines
288 B
Rust
Raw Normal View History

2024-09-03 00:41:54 +00:00
#[cfg(feature="fixed_wide")]
pub mod fixed_wide;
2024-08-23 22:42:48 +00:00
2024-09-02 21:04:52 +00:00
pub mod common;
2024-08-30 19:05:52 +00:00
pub mod vector;
2024-08-30 19:06:33 +00:00
pub mod matrix;
2024-09-03 16:40:08 +00:00
#[doc(hidden)]
#[macro_export(local_inner_macros)]
macro_rules! macro_repeated{
(
$macro:ident,
$any:tt,
$($repeated:tt),*
)=>{
$(
$crate::$macro!($repeated, $any);
)*
};
}