Giter Club home page Giter Club logo

Comments (9)

PeterJohnson avatar PeterJohnson commented on July 18, 2024 3

I assume the put() call was modeled after the Java Map put() function, which returns the previous value, not the map itself. The current code returns void, but it might be confusing to return this when no other Map in Java does that (including TreeMap). https://docs.oracle.com/javase/8/docs/api/java/util/Map.html#put-K-V-

Is there a reason you want to chain here? You can always put code into a static {} block.

from allwpilib.

calcmogul avatar calcmogul commented on July 18, 2024 3

We could implement this function from the standard library:
https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/Map.html#ofEntries(java.util.Map.Entry...)

I strongly suggest we don't deviate from stdlib conventions, because it's intended to act like a stdlib type.

from allwpilib.

SamCarlberg avatar SamCarlberg commented on July 18, 2024 2

An API shape like Java's existing Map.of but accepting a variadic double array would be preferred.

InterpolatingDoubleTreeMap interpolationMap =
  InterpolatingDoubleTreeMap.of(
    2.90, 62,
    2.52, 55,
    2.25, 50,
    3.59, 63,
    3.04, 56
  );

from allwpilib.

ori-coval avatar ori-coval commented on July 18, 2024 1

no new allocation just return this

from allwpilib.

KangarooKoala avatar KangarooKoala commented on July 18, 2024 1

What if instead of put() it was named addEntry(), withEntry(), or something else which doesn't have an existing meaning/convention like put()?

from allwpilib.

ori-coval avatar ori-coval commented on July 18, 2024

if this is decided to be done I have no prob implementing it.

from allwpilib.

spacey-sooty avatar spacey-sooty commented on July 18, 2024

I think so long as you don't have to allocate a new object each time this is a fine feature to add

from allwpilib.

ori-coval avatar ori-coval commented on July 18, 2024

I can see why some people would prefer a variadic double array but I can say for myself that I prefer chaining the .put() method for a clear separation between each pair.

so how about adding both?

from allwpilib.

ori-coval avatar ori-coval commented on July 18, 2024

the reason is ease of use and readability.

I prefer the lower example it makes it easier and faster to add multiple values one after the other and keeps a clear separation between the added values, unlike a variadic double array.
a variadic double array would also be good enough for me but I think chaining would be easier, especially for beginners.

    static {
        shooterAngleInterpolation.put(2.9, 62.0);
        shooterAngleInterpolation.put(2.52, 55.0);
        shooterAngleInterpolation.put(2.15, 50.0);
        shooterAngleInterpolation.put(3.59, 63.0);
        shooterAngleInterpolation.put(3.04, 56.0);
    }

        shooterAngleInterpolation.put(2.9, 62.0)
        .put(2.52, 55.0)
        .put(2.15, 50.0)
        .put(3.59, 63.0)
        .put(3.04, 56.0);}

from allwpilib.

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.