#![doc = include_str!("../README.md")]
#![forbid(unsafe_code)]
#![no_std]
macro_rules! impl_base_ops {
($quan:ident, $unit:path) => {
impl<U> Add for $quan<U>
where
U: $unit,
{
type Output = Self;
fn add(self, other: Self) -> Self::Output {
Self::new(self.quantity + other.quantity)
}
}
impl<U> Sub for $quan<U>
where
U: $unit,
{
type Output = Self;
fn sub(self, other: Self) -> Self::Output {
Self::new(self.quantity - other.quantity)
}
}
impl<U> Mul<f64> for $quan<U>
where
U: $unit,
{
type Output = Self;
fn mul(self, scalar: f64) -> Self::Output {
Self::new(self.quantity * scalar)
}
}
impl<U> Mul<i32> for $quan<U>
where
U: $unit,
{
type Output = Self;
fn mul(self, scalar: i32) -> Self::Output {
Self::new(self.quantity * f64::from(scalar))
}
}
impl<U> Mul<$quan<U>> for f64
where
U: $unit,
{
type Output = $quan<U>;
fn mul(self, other: $quan<U>) -> Self::Output {
Self::Output::new(self * other.quantity)
}
}
impl<U> Div<f64> for $quan<U>
where
U: $unit,
{
type Output = Self;
fn div(self, scalar: f64) -> Self::Output {
Self::new(self.quantity / scalar)
}
}
};
}
pub mod length;
pub mod mass;
pub mod quan;
mod speed;
pub mod temp;
pub mod time;
pub use length::lenpriv::{Area, Length, Volume};
pub use speed::Speed;
pub use time::timepriv::{Frequency, Period};