1QB_MAP_ITER_NEXT(3) libqb Programmer's Manual QB_MAP_ITER_NEXT(3)
2
3
4
6 qb_map_iter_next - Get the next item.
7
8
10 #include <qb/qbmap.h>
11
12 const char * qb_map_iter_next(
13 qb_map_iter_t *i, /* the iterator */
14 void **value /* (out) the next item's value*/
15 );
16
18 i the iterator
19
20 value (out) the next item's value
21
24 the next key
25
26 NULL - the end of the iteration
27
29 qb_trie_dump(3), qb_map_iter_create(3), qb_skiplist_create(3),
30 qb_map_notify_del(3), qb_map_put(3), qb_map_count_get(3),
31 qb_map_foreach(3), qb_map_pref_iter_create(3), qb_map_get(3),
32 qb_map_destroy(3), qb_hashtable_create(3), qb_map_iter_free(3),
33 qb_map_notify_add(3), qb_trie_create(3), qb_map_notify_del_2(3),
34 qb_map_rm(3)
35
37 Copyright (C) 2010-2020 Red Hat, Inc.
38
39
40
41LIBQB 2023-07-21 QB_MAP_ITER_NEXT(3)