X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/730b772b41ad9df76e5226290bb9eb917ea161f0..36a0190ebd5bd9a7302f60f6dcd608b80574e21c:/interface/wx/hashmap.h diff --git a/interface/wx/hashmap.h b/interface/wx/hashmap.h index 4b4dda0225..d0bf672e29 100644 --- a/interface/wx/hashmap.h +++ b/interface/wx/hashmap.h @@ -2,8 +2,7 @@ // Name: hashmap.h // Purpose: interface of wxHashMap // Author: wxWidgets team -// RCS-ID: $Id$ -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// /** @@ -11,7 +10,7 @@ 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, + In particular, the interface is modelled after std::map, and the various, non-standard, std::hash_map (http://www.cppreference.com/wiki/stl/map/start). Example: @@ -228,7 +227,8 @@ public: /** 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. + returned. + @code hashmap.find( non_existent_key ) == hashmap.end() @endcode