(file) Return to HashTable.h CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/HashTable.h between version 1.3 and 1.4

version 1.3, 2001/04/27 18:46:20 version 1.4, 2001/04/29 06:26:23
Line 458 
Line 458 
             H::hash(key), new _Bucket<K, V, E>(key, value), &key);             H::hash(key), new _Bucket<K, V, E>(key, value), &key);
     }     }
  
       /** Checks to see if hash table contains an entry with the given key.
           @param key key to be searched for
           @return true if hash table contains an entry with the given key.
       */
       Boolean contains(const K& key)
       {
           V value;
           return lookup(key, value);
       }
   
     /** Looks up the entry with the given key.     /** Looks up the entry with the given key.
         @param key key of entry to be located.         @param key key of entry to be located.
         @param value output value.         @param value output value.


Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2