• H
    Merge core::num::Float and std::num::FloatMath. · ae476276
    Huon Wilson 提交于
    `FloatMath` no longer exists and all functionality from both traits is
    available under `Float`. Change from
    
        use std::num::{Float, FloatMath};
    
    to
    
        use std::num::Float;
    
    [breaking-change]
    ae476276
lib.rs 61.4 KB