/** * DOC: int_map * * An int_map associates pointers (void *) with integer keys (u64). NULL pointer values are * not supported. * * The map is implemented as hash table, which should provide constant-time insert, query, and * remove operations, although the insert may occasionally grow the table, which is linear in the * number of entries in the map. The table will grow as needed to hold new entries, but will not * shrink as entries are removed.
*/
struct int_map;
int __must_check vdo_int_map_create(size_t initial_capacity, struct int_map **map_ptr);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.