2008-03-08 13:52:38 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: hashmap.h
|
2008-03-10 15:24:38 +00:00
|
|
|
// Purpose: interface of wxHashMap
|
2008-03-08 13:52:38 +00:00
|
|
|
// Author: wxWidgets team
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Licence: wxWindows license
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/**
|
|
|
|
@class wxHashMap
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
This is a simple, type-safe, and reasonably efficient hash map class,
|
|
|
|
whose interface is a subset of the interface of STL containers. In
|
|
|
|
particular, the interface is modeled after std::map, and the various,
|
|
|
|
non-standard, std::hash_map.
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
@library{wxbase}
|
|
|
|
@category{FIXME}
|
|
|
|
*/
|
2008-03-08 14:43:31 +00:00
|
|
|
class wxHashMap
|
2008-03-08 13:52:38 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
//@{
|
|
|
|
/**
|
|
|
|
Copy constructor.
|
|
|
|
*/
|
|
|
|
wxHashMap(size_type size = 10);
|
2008-03-08 14:43:31 +00:00
|
|
|
wxHashMap(const wxHashMap& map);
|
2008-03-08 13:52:38 +00:00
|
|
|
//@}
|
|
|
|
|
|
|
|
//@{
|
|
|
|
/**
|
|
|
|
Returns an iterator pointing at the first element of the hash map.
|
|
|
|
Please remember that hash maps do not guarantee ordering.
|
|
|
|
*/
|
|
|
|
const_iterator begin();
|
2008-03-09 16:24:26 +00:00
|
|
|
const iterator begin();
|
2008-03-08 13:52:38 +00:00
|
|
|
//@}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Removes all elements from the hash map.
|
|
|
|
*/
|
|
|
|
void clear();
|
|
|
|
|
|
|
|
/**
|
|
|
|
Counts the number of elements with the given key present in the map.
|
|
|
|
This function returns only 0 or 1.
|
|
|
|
*/
|
2008-03-09 16:24:26 +00:00
|
|
|
size_type count(const key_type& key) const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Returns @true if the hash map does not contain any elements, @false otherwise.
|
|
|
|
*/
|
2008-03-09 16:24:26 +00:00
|
|
|
bool empty() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
|
|
|
|
//@{
|
|
|
|
/**
|
|
|
|
Returns an iterator pointing at the one-after-the-last element of the hash map.
|
|
|
|
Please remember that hash maps do not guarantee ordering.
|
|
|
|
*/
|
|
|
|
const_iterator end();
|
2008-03-09 16:24:26 +00:00
|
|
|
const iterator end();
|
2008-03-08 13:52:38 +00:00
|
|
|
//@}
|
|
|
|
|
|
|
|
//@{
|
|
|
|
/**
|
|
|
|
Erases the element pointed to by the iterator. After the deletion
|
|
|
|
the iterator is no longer valid and must not be used.
|
|
|
|
*/
|
|
|
|
size_type erase(const key_type& key);
|
2008-03-08 14:43:31 +00:00
|
|
|
void erase(iterator it);
|
|
|
|
void erase(const_iterator it);
|
2008-03-08 13:52:38 +00:00
|
|
|
//@}
|
|
|
|
|
|
|
|
//@{
|
|
|
|
/**
|
|
|
|
If an element with the given key is present, the functions returns
|
|
|
|
an iterator pointing at that element, otherwise an invalid iterator
|
|
|
|
is returned (i.e. hashmap.find( non_existent_key ) == hashmap.end()).
|
|
|
|
*/
|
2008-03-09 16:24:26 +00:00
|
|
|
iterator find(const key_type& key) const;
|
|
|
|
const_iterator find(const key_type& key) const;
|
2008-03-08 13:52:38 +00:00
|
|
|
//@}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Inserts the given value in the hash map. The return value is
|
|
|
|
equivalent to a @c std::pairiterator(), bool;
|
|
|
|
the iterator points to the inserted element, the boolean value
|
|
|
|
is @true if @c v was actually inserted.
|
|
|
|
*/
|
|
|
|
Insert_Result insert(const value_type& v);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Use the key as an array subscript. The only difference is that if the
|
|
|
|
given key is not present in the hash map, an element with the
|
|
|
|
default @c value_type() is inserted in the table.
|
|
|
|
*/
|
|
|
|
mapped_type operator[](const key_type& key);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Returns the number of elements in the map.
|
|
|
|
*/
|
2008-03-09 16:24:26 +00:00
|
|
|
size_type size() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
};
|
2008-03-10 15:24:38 +00:00
|
|
|
|