macro_rules! make_units_adv { ($System:ident, $Unitless:ident, $one:ident, $OneType:ident; base { $($Root:ident, $Type:ident, $constant:ident, $print_as:ident;)+ } derived {$($derived_constant:ident: $Derived:ident = $e: expr; )*} ) => (
#[allow(unused_imports)]
use $crate::peano::{Zero, One, Two, Three, Four, Five, Six, Seven, Eight, Nine, Ten};
use $crate::peano::{Peano, KeepPeano, AddPeano, SubPeano, MulPeano, DivPeano, Negate, ToInt};
use $crate::dimensioned::{Dimension, Dimensionless, Dim, KeepDim, MulDim, DivDim, PowerDim, RootDim, InvertDim, DimToString};
use std::marker::PhantomData;
#[derive(Copy, Clone)]
pub struct $System<$($Type: Peano = Zero),*> {
$($constant: PhantomData<$Type>),*
}
impl<$($Type: Peano),*> Dimension for $System<$($Type),*> {}
#[allow(non_camel_case_types)]
impl<$($Type),*, $($constant),*> KeepDim<$System<$($constant),*>> for $System<$($Type),*> where
$($Type: Peano + KeepPeano<$constant>),*, $($constant: Peano),* {
type Output = $System<$(<$Type as KeepPeano<$constant>>::Output),*>;
}
#[allow(non_camel_case_types)]
impl<$($Type),*, $($constant),*> MulDim<$System<$($constant),*>> for $System<$($Type),*> where
$($Type: Peano + AddPeano<$constant>),*, $($constant: Peano),* {
type Output = $System<$(<$Type as AddPeano<$constant>>::Output),*>;
}
#[allow(non_camel_case_types)]
impl<$($Type),*, $($constant),*> DivDim<$System<$($constant),*>> for $System<$($Type),*> where
$($Type: Peano + SubPeano<$constant>),*, $($constant: Peano),* {
type Output = $System<$(<$Type as SubPeano<$constant>>::Output),*>;
}
impl<$($Type),*, RHS> PowerDim<RHS> for $System<$($Type),*> where
$($Type: Peano + MulPeano<RHS>),*, RHS: Peano {
type Output = $System<$(<$Type as MulPeano<RHS>>::Output),*>;
}
impl<$($Type),*, RHS> RootDim<RHS> for $System<$($Type),*> where
$($Type: Peano + DivPeano<RHS>),*, RHS: Peano {
type Output = $System<$(<$Type as DivPeano<RHS>>::Output),*>;
}
impl<$($Type),*> InvertDim for $System<$($Type),*> where
$($Type: Peano + Negate),* {
type Output = $System<$(<$Type as Negate>::Output),*>;
}
fn pretty_dim(roots: [i32; count_args!($($Type),*)], exps: [i32; count_args!($($Type),*)], tokens: [&'static str; count_args!($($Type),*)]) -> String {
let mut __string = String::new();
for ((&root, &exp), &token) in roots.iter().zip(exps.iter()).zip(tokens.iter()) {
let __temp: (&'static str, String) = match exp {
0 => ("", "".to_string()),
1 => (token, "*".to_string()),
_ => (token, format!("^{}*", exp/root)),
};
__string = format!("{}{}{}", __string, __temp.0, __temp.1);
}
__string.pop();
__string
}
impl<$($Type),*> DimToString for $System<$($Type),*>
where $($Type: ToInt),* {
fn to_string() -> String {
let allowed_roots = [$($Root::to_int()),*];
let exponents = [$($Type::to_int()),*];
let print_tokens = [$(stringify!($print_as)),*];
pretty_dim(allowed_roots, exponents, print_tokens)
}
}
pub type $Unitless = $System;
impl Dimensionless for $Unitless {}
#[allow(non_upper_case_globals)]
pub const $one: Dim<$Unitless, $OneType> = Dim(1.0, PhantomData);
__make_types!($System, $($Type, $Root),+ |);
$(#[allow(non_upper_case_globals)] pub const $constant: Dim<$Type, $OneType> = Dim(1.0, PhantomData));*;
);
}