2020-02-14 10:14:22 -05:00
|
|
|
//! Numeric Helper Traits
|
2020-02-14 23:41:14 -05:00
|
|
|
#![allow(unused_comparisons)]
|
|
|
|
use core::convert::TryFrom;
|
|
|
|
use core::fmt::Debug;
|
|
|
|
use core::ops::{
|
2020-02-14 10:14:22 -05:00
|
|
|
Add, AddAssign, BitAnd, BitAndAssign, BitOr, BitOrAssign, BitXor, BitXorAssign, Div, DivAssign,
|
|
|
|
Mul, MulAssign, Not, Rem, RemAssign, Shl, ShlAssign, Shr, ShrAssign, Sub, SubAssign,
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Native number type
|
|
|
|
pub trait Num:
|
2020-02-14 23:41:14 -05:00
|
|
|
Add
|
|
|
|
+ AddAssign
|
|
|
|
+ Debug
|
|
|
|
+ Div
|
|
|
|
+ DivAssign
|
|
|
|
+ Mul
|
|
|
|
+ MulAssign
|
|
|
|
+ Rem
|
|
|
|
+ RemAssign
|
|
|
|
+ PartialOrd
|
|
|
|
+ PartialEq
|
|
|
|
+ Copy
|
|
|
|
+ Sub
|
|
|
|
+ SubAssign
|
2020-02-14 10:14:22 -05:00
|
|
|
{
|
2020-02-14 23:41:14 -05:00
|
|
|
/// Is this number type signed?
|
|
|
|
fn is_signed(&self) -> bool {
|
|
|
|
true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Float primitive
|
|
|
|
pub trait Float: Num {
|
|
|
|
fn is_neg(self) -> bool;
|
2020-02-14 10:14:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Integer primitive
|
|
|
|
pub trait Int:
|
|
|
|
Num
|
|
|
|
+ BitAnd
|
|
|
|
+ BitAndAssign
|
|
|
|
+ BitOr
|
|
|
|
+ BitOrAssign
|
|
|
|
+ BitXor
|
|
|
|
+ BitXorAssign
|
|
|
|
+ Eq
|
|
|
|
+ Ord
|
|
|
|
+ Not
|
|
|
|
+ Shl
|
|
|
|
+ Shr
|
|
|
|
+ ShlAssign
|
|
|
|
+ ShrAssign
|
|
|
|
{
|
|
|
|
/// The maximum value of the type
|
|
|
|
fn max_value() -> Self;
|
|
|
|
|
|
|
|
/// Is this a zero value?
|
|
|
|
fn is_zero(self) -> bool;
|
2020-02-14 23:41:14 -05:00
|
|
|
|
|
|
|
/// Is this number less than zero?
|
|
|
|
fn is_neg(self) -> bool;
|
2020-02-14 10:14:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// A Trait representing unsigned integer primitives
|
|
|
|
pub trait Unsigned: Int {
|
|
|
|
/// Find the greatest common denominator of two numbers
|
|
|
|
fn gcd(a: Self, b: Self) -> Self;
|
|
|
|
|
|
|
|
/// Find the least common multiple of two numbers
|
|
|
|
fn lcm(a: Self, b: Self) -> Self;
|
2020-02-14 17:24:51 -05:00
|
|
|
|
2020-02-14 23:41:14 -05:00
|
|
|
fn is_signed(self) -> bool {
|
|
|
|
false
|
|
|
|
}
|
2020-02-14 17:24:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// A Trait representing signed integer primitives
|
2020-02-14 23:41:14 -05:00
|
|
|
pub trait Signed: Int {
|
|
|
|
type Un;
|
2020-02-14 17:24:51 -05:00
|
|
|
|
2020-02-14 23:41:14 -05:00
|
|
|
fn to_unsigned(self) -> Self::Un;
|
2020-02-14 10:14:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
|
|
|
|
pub enum Sign {
|
2020-02-18 10:19:57 -05:00
|
|
|
/// Greater than zero, or zero
|
2020-02-14 10:14:22 -05:00
|
|
|
Positive,
|
2020-02-18 10:19:57 -05:00
|
|
|
|
|
|
|
/// Less than zero
|
2020-02-14 10:14:22 -05:00
|
|
|
Negative,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Sign {
|
|
|
|
fn default() -> Self {
|
|
|
|
Sign::Positive
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Not for Sign {
|
|
|
|
type Output = Sign;
|
|
|
|
|
|
|
|
fn not(self) -> Self::Output {
|
|
|
|
match self {
|
|
|
|
Self::Positive => Self::Negative,
|
|
|
|
Self::Negative => Self::Positive,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! impl_num {
|
|
|
|
($( $Type: ty ),* ) => {
|
|
|
|
$(
|
|
|
|
impl Num for $Type {
|
|
|
|
|
|
|
|
}
|
|
|
|
)*
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-14 23:41:14 -05:00
|
|
|
macro_rules! impl_float {
|
|
|
|
($( $Type: ty ),* ) => {
|
|
|
|
$(
|
|
|
|
impl Float for $Type {
|
|
|
|
fn is_neg(self) -> bool {
|
|
|
|
self < 0.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)*
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-14 10:14:22 -05:00
|
|
|
macro_rules! impl_int {
|
|
|
|
($( $Type: ty ),* ) => {
|
|
|
|
$(
|
|
|
|
impl Int for $Type {
|
|
|
|
fn is_zero(self) -> bool {
|
|
|
|
self == 0
|
|
|
|
}
|
|
|
|
|
|
|
|
fn max_value() -> $Type {
|
|
|
|
<$Type>::max_value()
|
|
|
|
}
|
2020-02-14 23:41:14 -05:00
|
|
|
|
|
|
|
/// Is this number less than zero?
|
|
|
|
|
|
|
|
fn is_neg(self) -> bool {
|
|
|
|
if self.is_signed() == false {
|
|
|
|
false
|
|
|
|
} else {
|
|
|
|
self < 0
|
|
|
|
}
|
|
|
|
}
|
2020-02-14 10:14:22 -05:00
|
|
|
}
|
|
|
|
)*
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! impl_unsigned {
|
|
|
|
($($Type: ty),* ) => {
|
|
|
|
$(
|
|
|
|
impl Unsigned for $Type {
|
|
|
|
/// Implementation based on https://en.wikipedia.org/wiki/Binary_GCD_algorithm
|
|
|
|
fn gcd(a: $Type, b: $Type) -> $Type {
|
|
|
|
if a == b {
|
|
|
|
return a;
|
|
|
|
} else if a == 0 {
|
|
|
|
return b;
|
|
|
|
} else if b == 0 {
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
|
|
|
let a_even = a % 2 == 0;
|
|
|
|
let b_even = b % 2 == 0;
|
|
|
|
|
|
|
|
if a_even {
|
|
|
|
if b_even {
|
|
|
|
// Both a & b are even
|
|
|
|
return Self::gcd(a >> 1, b >> 1) << 1;
|
|
|
|
} else if !b_even {
|
|
|
|
// b is odd
|
|
|
|
return Self::gcd(a >> 1, b);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// a is odd, b is even
|
|
|
|
if (!a_even) && b_even {
|
|
|
|
return Self::gcd(a, b >> 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if a > b {
|
|
|
|
return Self::gcd((a - b) >> 1, b);
|
|
|
|
}
|
|
|
|
|
|
|
|
Self::gcd((b - a) >> 1, a)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn lcm(a: $Type, b: $Type) -> $Type {
|
|
|
|
if (a == 0 && b == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
a * b / Self::gcd(a, b)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)*
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-02-14 17:24:51 -05:00
|
|
|
macro_rules! impl_signed {
|
|
|
|
($(($type: ty, $un_type: ty)),* ) => {
|
|
|
|
$(
|
2020-02-14 23:41:14 -05:00
|
|
|
impl Signed for $type {
|
|
|
|
type Un = $un_type;
|
2020-02-14 17:24:51 -05:00
|
|
|
|
2020-02-14 23:41:14 -05:00
|
|
|
fn to_unsigned(self) -> $un_type {
|
2020-02-14 17:24:51 -05:00
|
|
|
// Converting from signed to unsigned should always be safe
|
|
|
|
// when using the absolute value, especially since I'm converting
|
|
|
|
// between the same bit size
|
2020-02-14 23:41:14 -05:00
|
|
|
<$un_type>::try_from(self).unwrap()
|
2020-02-14 17:24:51 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
)*
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl_num!(i8, u8, i16, u16, f32, i32, u32, f64, i64, u64, i128, u128, isize, usize);
|
2020-02-14 23:41:14 -05:00
|
|
|
impl_float!(f32, f64);
|
2020-02-14 17:24:51 -05:00
|
|
|
impl_int!(i8, u8, i16, u16, i32, u32, i64, u64, i128, u128, isize, usize);
|
2020-02-14 10:14:22 -05:00
|
|
|
impl_unsigned!(u8, u16, u32, u64, u128, usize);
|
2020-02-14 23:41:14 -05:00
|
|
|
impl_signed!(
|
|
|
|
(i8, u8),
|
|
|
|
(i16, u16),
|
|
|
|
(i32, u32),
|
|
|
|
(i64, u64),
|
|
|
|
(i128, u128),
|
|
|
|
(isize, usize)
|
|
|
|
);
|
2020-02-14 10:14:22 -05:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_gcd() {
|
|
|
|
assert_eq!(u8::gcd(2, 2), 2);
|
|
|
|
assert_eq!(u16::gcd(36, 48), 12);
|
|
|
|
}
|
2020-02-14 12:11:57 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_lcm() {
|
|
|
|
assert_eq!(usize::lcm(15, 30), 30);
|
|
|
|
assert_eq!(u128::lcm(1, 5), 5);
|
|
|
|
}
|
2020-02-14 10:14:22 -05:00
|
|
|
}
|