#include <Teuchos_HashSet.hpp>
Public Member Functions | |
| HashSet (int capacity=19) | |
| Create an empty HashSet. | |
| bool | containsKey (const Key &key) const |
| Check for the presence of a key. | |
| void | put (const Key &key) |
| Put a new object into the table. | |
| void | remove (const Key &key) |
| Remove from the table the element given by key. | |
| int | size () const |
| Get the number of elements in the table. | |
| Array< Key > | arrayify () const |
| Get list of keys in Array form. | |
| void | arrayify (Array< Key > &keys) const |
| Get list of keys in Array form. | |
| std::string | toString () const |
| Write to a std::string. | |
Related Functions | |
| (Note that these are not member functions.) | |
| std::ostream & | operator<< (std::ostream &os, const HashSet< Key > &h) |
| Write HashSet to a stream. | |
HashSet is a hashtable-based set, similar to the STL set class or the Java HashSet class.
|
||||||||||
|
Create an empty HashSet.
|
|
||||||||||
|
Check for the presence of a key.
|
|
||||||||||
|
Put a new object into the table.
|
|
||||||||||
|
Remove from the table the element given by key.
|
|
|||||||||
|
Get the number of elements in the table.
|
|
|||||||||
|
Get list of keys in Array form.
|
|
||||||||||
|
Get list of keys in Array form.
|
|
|||||||||
|
Write to a std::string.
|
|
||||||||||||||||
|
Write HashSet to a stream.
|
1.3.9.1