Add initial impl of clear

This commit is contained in:
Christian Mazakas
2023-05-01 11:58:45 -07:00
parent c52ad849ea
commit 011b7a5969
3 changed files with 113 additions and 0 deletions

View File

@@ -685,6 +685,8 @@ namespace boost {
return table_.erase_if(f);
}
void clear() noexcept { table_.clear(); }
/// Hash Policy
///
void rehash(size_type n) { table_.rehash(n); }