Trove put values

This commit is contained in:
mherbaghinyan 2019-03-23 15:24:57 +04:00
parent 327f00f4d9
commit 1699e4c3bd
1 changed files with 3 additions and 3 deletions

View File

@ -59,8 +59,8 @@ public class PrimitiveMaps {
TDoubleIntMap doubleIntMap = new TDoubleIntHashMap(doubles, ints);
doubleIntMap.adjustValue(1.2, 1);
doubleIntMap.adjustValue(4.5, 4);
doubleIntMap.adjustValue(0.3, 0);
doubleIntMap.put(1.2, 1);
doubleIntMap.put(4.5, 4);
doubleIntMap.put(0.3, 0);
}
}