(final Comparator<T> comp)
| 17 | private final SortedMap<T,MutableDouble> counts; |
| 18 | |
| 19 | public CountMap(final Comparator<T> comp) { |
| 20 | counts = new TreeMap<T,MutableDouble>(comp); |
| 21 | } |
| 22 | |
| 23 | /** |
| 24 | * Invariant: key set calls all keys ever observed (even those with net-zero count) |
nothing calls this directly
no outgoing calls
no test coverage detected