Is there any trait that specifies numeric functionality?

前端 未结 1 874
被撕碎了的回忆
被撕碎了的回忆 2020-11-27 08:05

I\'d like to use a trait to bound a generic type, like this hypothetical HasSQRT:

fn some_generic_function(input: &T)
where
    T:          


        
相关标签:
1条回答
  • 2020-11-27 08:34

    You can use num or num-traits crates and bound your generic function type with num::Float, num::Integer or whatever relevant trait:

    use num::Float; // 0.2.1
    
    fn main() {
        let f1: f32 = 2.0;
        let f2: f64 = 3.0;
        let i1: i32 = 3;
    
        println!("{:?}", sqrt(f1));
        println!("{:?}", sqrt(f2));
        println!("{:?}", sqrt(i1)); // error
    }
    
    fn sqrt<T: Float>(input: T) -> T {
        input.sqrt()
    }
    
    0 讨论(0)
提交回复
热议问题