lib: os: doc: Cleanup doxygen groups
Cleaned up doxygen group for hash_map and hash_map_api Adding brief/desc to the main group instead of the file to actually surface them in the documentation Signed-off-by: Benjamin Cabé <benjamin@zephyrproject.org>
This commit is contained in:
parent
1539c1c094
commit
ea1e6b59f5
|
@ -6,10 +6,8 @@
|
|||
|
||||
/**
|
||||
* @file
|
||||
* @brief Hashmap (Hash Table) API
|
||||
*
|
||||
* Hashmaps (a.k.a Hash Tables) sacrifice space for speed. All operations
|
||||
* on a Hashmap (insert, delete, search) are O(1) complexity (on average).
|
||||
* @addtogroup hashmap_apis
|
||||
* @{
|
||||
*/
|
||||
|
||||
#ifndef ZEPHYR_INCLUDE_SYS_HASH_MAP_H_
|
||||
|
@ -29,11 +27,6 @@
|
|||
extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @ingroup hashmap_apis
|
||||
* @{
|
||||
*/
|
||||
|
||||
/**
|
||||
* @brief Declare a Hashmap (advanced)
|
||||
*
|
||||
|
|
|
@ -4,14 +4,6 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file
|
||||
* @brief Hashmap (Hash Table) API
|
||||
*
|
||||
* Hashmaps (a.k.a Hash Tables) sacrifice space for speed. All operations
|
||||
* on a Hashmap (insert, delete, search) are O(1) complexity (on average).
|
||||
*/
|
||||
|
||||
#ifndef ZEPHYR_INCLUDE_SYS_HASHMAP_API_H_
|
||||
#define ZEPHYR_INCLUDE_SYS_HASHMAP_API_H_
|
||||
|
||||
|
@ -27,9 +19,15 @@ extern "C" {
|
|||
#endif
|
||||
|
||||
/**
|
||||
* @file
|
||||
* @defgroup hashmap_apis Hashmap
|
||||
* @ingroup datastructure_apis
|
||||
*
|
||||
* @brief Hashmap (Hash Table) API
|
||||
*
|
||||
* Hashmaps (a.k.a Hash Tables) sacrifice space for speed. All operations
|
||||
* on a Hashmap (insert, delete, search) are O(1) complexity (on average).
|
||||
*
|
||||
* @defgroup hashmap_implementations Hashmap Implementations
|
||||
* @ingroup hashmap_apis
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue