18 lines
238 B
Rust
Raw Normal View History

2024-09-02 14:04:52 -07:00
pub mod common;
2024-08-30 12:05:52 -07:00
pub mod vector;
2024-08-30 12:06:33 -07:00
pub mod matrix;
2024-09-05 13:16:02 -07:00
#[doc(hidden)]
#[macro_export(local_inner_macros)]
macro_rules! macro_repeated{
(
$macro:ident,
$any:tt,
$($repeated:tt),*
)=>{
$(
$crate::$macro!($any, $repeated);
)*
};
}