X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/268981d54533fb025d1353582cf229d235eb2fb2..1e18ccad74ce3d49299f1da9022c5d5e4ee76918:/include/xbt/dict.h diff --git a/include/xbt/dict.h b/include/xbt/dict.h index daa0a4cef5..686f396987 100644 --- a/include/xbt/dict.h +++ b/include/xbt/dict.h @@ -19,11 +19,6 @@ SG_BEGIN_DECL() /** @addtogroup XBT_dict * @brief The dictionnary data structure (comparable to hash tables) * - *
Top [\ref index]::[\ref XBT_API] - *
Prev [\ref XBT_dynar] - *
Next [\ref XBT_set] - *
Down [\ref XBT_dict_cons]
- * * This section describes the API to a dictionnary structure that * associates as string to a void* key. Even if it provides the same * functionnality than an hash table, the implementation differs and the @@ -45,10 +40,6 @@ SG_BEGIN_DECL() /** @defgroup XBT_dict_cons Dict constructor and destructor * @ingroup XBT_dict * - *
Top [\ref index]::[\ref XBT_API]::[\ref XBT_dict] - *
Prev - *
Next [\ref XBT_dict_basic]
- * * @{ */ @@ -61,10 +52,6 @@ SG_BEGIN_DECL() /** @defgroup XBT_dict_basic Dictionnaries basic usage * @ingroup XBT_dict * - *
Top [\ref index]::[\ref XBT_API]::[\ref XBT_dict] - *
Prev [\ref XBT_dict_cons] - *
Next [\ref XBT_dict_nnul]
- * * Careful, those functions assume that the key is null-terminated. * * @{ @@ -81,10 +68,6 @@ SG_BEGIN_DECL() /** @defgroup XBT_dict_nnul Dictionnaries with non-nul terminated keys * @ingroup XBT_dict * - *
Top [\ref index]::[\ref XBT_API]::[\ref XBT_dict] - *
Prev [\ref XBT_dict_basic] - *
Next [\ref XBT_dict_curs]
- * * Those functions work even with non-null terminated keys. * * @{ @@ -101,10 +84,6 @@ SG_BEGIN_DECL() /** @defgroup XBT_dict_curs Cursors on dictionnaries * @ingroup XBT_dict * - *
Top [\ref index]::[\ref XBT_API]::[\ref XBT_dict] - *
Prev [\ref XBT_dict_nnul] - *
Next [\ref XBT_dict_multi]
- * * Don't get impressed, there is a lot of functions here, but traversing a * dictionnary is imediate with the xbt_dict_foreach macro. * You only need the other functions in rare cases (they are not used directly in SG itself). @@ -151,10 +130,6 @@ SG_BEGIN_DECL() /** @defgroup XBT_dict_multi Multi-level dictionnaries * @ingroup XBT_dict * - *
Top [\ref index]::[\ref XBT_API]::[\ref XBT_dict] - *
Prev [\ref XBT_dict_curs] - *
Next
- * * They can be seen as dictionnary of multiple keys or as dictionnary of * dictionnary of ... of data. Most of the functions here work the same way * than their simple dictionnary counterpart.