qt_dictionary_iterator_get - Man Page
retrieves the indicated entry in the dictionary
Synopsis
#include <qthread/dictionary.h>
list_entry *
qt_dictionary_iterator_get (const qt_dictionary_iterator *iter);
Description
This function retrieves the entry indicated by the iterator iter.
Return Values
Returns a key/value pair, if there is one. In racy concurrent situations, if the item indicated by the iterator was deleted from the dictionary, multiple results may happen. The next element in the dictionary may be returned, or NULL may be returned, OR an error may be returned. However, it may not crash.
See Also
qt_dictionary_create(3), qt_dictionary_delete(3), qt_dictionary_destroy(3), qt_dictionary_end(3), qt_dictionary_get(3), qt_dictionary_iterator_copy(3), qt_dictionary_iterator_create(3), qt_dictionary_iterator_destroy(3), qt_dictionary_iterator_equals(3), qt_dictionary_iterator_next(3), qt_dictionary_put(3), qt_dictionary_put_if_absent(3)
Referenced By
qt_dictionary_create(3), qt_dictionary_delete(3), qt_dictionary_destroy(3), qt_dictionary_end(3), qt_dictionary_get(3), qt_dictionary_iterator_copy(3), qt_dictionary_iterator_create(3), qt_dictionary_iterator_destroy(3), qt_dictionary_iterator_equals(3), qt_dictionary_iterator_next(3), qt_dictionary_put(3), qt_dictionary_put_if_absent(3).