traits.rs: Implement Bounded for tuples of Bounded types

For example, the following will print (4294967295, 65535):

extern crate num;
use num::traits::Bounded;

fn main() {
    let t : (u32, u16) = Bounded::max_value();
    println!("{:?}", t);
}
This commit is contained in:
Josh Triplett 2015-04-25 16:43:18 -07:00
parent 63d2e79c1e
commit c6163dac40
1 changed files with 24 additions and 0 deletions

View File

@ -463,6 +463,30 @@ bounded_impl!(i64, i64::MIN, i64::MAX);
bounded_impl!(f32, f32::MIN, f32::MAX);
bounded_impl!(f64, f64::MIN, f64::MAX);
macro_rules! bounded_tuple {
( $($name:ident)* ) => (
impl<$($name: Bounded,)*> Bounded for ($($name,)*) {
fn min_value() -> Self {
($($name::min_value(),)*)
}
fn max_value() -> Self {
($($name::max_value(),)*)
}
}
);
}
macro_rules! bounded_tuples {
() => (
bounded_tuple! { }
);
( $h:ident, $($t:ident,)* ) => (
bounded_tuple! { $h $($t)* }
bounded_tuples! { $($t,)* }
);
}
bounded_tuples! { A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, }
/// Saturating math operations
pub trait Saturating {
/// Saturating addition operator.