Browse Source

Corrected doc for remove()

release/0.19
Jessica James 8 years ago
parent
commit
40ab1fda6a
  1. 6
      Jupiter/Hash_Table.h

6
Jupiter/Hash_Table.h

@ -84,10 +84,10 @@ namespace Jupiter
bool set(const InKeyT &in_key);
/**
* @brief Removes an entry from the bucket
* @brief Removes an entry from the table
*
* @param in_key Key of the entry to search for
* @return Value of the entry which was removed on success, nullptr otherwise
* @param in_key Key of the entry to remove
* @return True if an entry was removed, false otherwise
*/
bool remove(const InKeyT &in_key);

Loading…
Cancel
Save