Coder Social home page Coder Social logo

Comments (2)

GoogleCodeExporter avatar GoogleCodeExporter commented on August 29, 2024
The current behavior is deliberate. Every key in the multimap must have at 
least one
value. It would be confusing if, for example, Multimap.keySet() included a key 
that
had no corresponding values in the multimap.

As a workaround, you could add a null value or a Null Object
<http://en.wikipedia.org/wiki/Null_Object_pattern> value to the multimap, 

Original comment by [email protected] on 17 Dec 2007 at 5:03

  • Changed state: WontFix

from google-collections.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 29, 2024
[email protected] made the following comment:
_________________________

I was interested in the google collections so I was reading through
this thread. I was wondering why you would say that every key must
have at least one value. In the reading I did, one of the reasons for
multi-map was to avoid code like:

Map m = ...
List l = (List)m.get("x");
if (l == null) {
 l = new ArrayList();
 m.put("x", l);
}
l.add("y");

In this scenario, it would allow "y" to have been null (I believe a
list can have at least one null element right?). And it could also use
the edge case to check for null and just use an empty array list as
the value. Either way, it seems like put() should never ignore data or
at least should throw an exception to signify to the caller that it is
illegal.

Regards,

Bruce
_________________________


Our multimap implementations have the following behavior when key isn't in the 
multimap:

1)  get(key) returns an empty collection

2)  get(key).put(value) adds the key-value mapping to the multimap

Will that handle the scenarios you're considering?

Original comment by [email protected] on 30 Dec 2007 at 8:17

from google-collections.

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.