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