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
9 #include <qb/qbmap.h>
10
11 const char* qb_map_iter_next(
12 qb_map_iter_t *i,
13 void **value
14 );
15
17 i the iterator
18
19 value (out) the next item's value
20
22 the next key
23
24 NULL - the end of the iteration
25
27 qb_trie_dump(3), qb_map_iter_create(3), qb_skiplist_create(3),
28 qb_map_notify_del(3), qb_map_put(3), qb_map_count_get(3),
29 qb_map_foreach(3), qb_map_pref_iter_create(3), qb_map_get(3),
30 qb_map_destroy(3), qb_hashtable_create(3), qb_map_iter_free(3),
31 qb_map_notify_add(3), qb_trie_create(3), qb_map_notify_del_2(3),
32 qb_map_rm(3)
33
35 Copyright (C) 2010-2020 Red Hat, Inc. All rights reserved.
36
37
38
39LIBQB 2020-07-30 QB_MAP_ITER_NEXT(3)