Rename set() to assign()
[junction.git] / junction / SingleMap_Linear.h
index ff1fd525ba63c72e8f39e71562062867988477b5..5716b4c64170a9fc79e125cca98d03bb8eaeff98 100644 (file)
@@ -189,7 +189,7 @@ public:
         return iter.isValid() ? iter.getValue() : NULL;
     }
 
-    Value set(const Key& key, Value desired) {
+    Value assign(const Key& key, Value desired) {
         Mutator iter(*this, key);
         return iter.exchangeValue(desired);
     }