You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by Torsten Curdt <tc...@apache.org> on 2005/07/07 15:33:42 UTC

[collections] reference counting

In the back of my head I thought this would
be possible already ...but right now  I just
cannot find how :-/

I would like to have a Set that does
reference counting. Example:

 set.add("a") // 1x a
 set.add("a") // 2x a
 set.remove("a") // 1x a
 set.remove("a") // empty

A useful addition or just me not
seeing the obvious?

cheers
--
Torsten