public V putIfAbsent(float key, V value) {
   synchronized (mutex) {
     return m.putIfAbsent(key, value);
   }
 }