Coder Social home page Coder Social logo

Comments (5)

mbrubeck avatar mbrubeck commented on July 21, 2024 1

Hmm, this was caused by #98.

from rust-ordered-float.

mbrubeck avatar mbrubeck commented on July 21, 2024 1

The BTreeSet::range method is generic over a type K: Ord where T: Borrow<K> + Ord. So it seems plausible that adding a new Borrow implementation to NotNan could allow calling this function with additional types.

However, NotNan<f64> only implements Borrow<f64>, and f64 does not implement Ord. So it should not affect this function call. It seems the compiler is not smart enough to see this, or it is overly conservative since it believes that f64 might implement Ord in the future. I'm not sure which.

from rust-ordered-float.

mbrubeck avatar mbrubeck commented on July 21, 2024 1

Closed accidentally. I meant to close #91, not this one.

from rust-ordered-float.

TonalidadeHidrica avatar TonalidadeHidrica commented on July 21, 2024

The workaround is to explicitly specify the type parameter K.

use std::collections::BTreeSet;
use ordered_float::NotNan;

fn main() {
    let a = BTreeSet::<NotNan<f64>>::new();
    let b = a.range::<NotNan<f64>, _>(..);
}

from rust-ordered-float.

TonalidadeHidrica avatar TonalidadeHidrica commented on July 21, 2024

Isn't it strange that implementing a trait make type inference fail? I'm wondering if this tends to happen, or it is a bug (or something can be improved) of Rust compiler.

from rust-ordered-float.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.