| 83 | void *oidmap_remove(struct oidmap *map, const struct object_id *key); |
| 84 | |
| 85 | static inline unsigned int oidmap_get_size(struct oidmap *map) |
| 86 | { |
| 87 | return hashmap_get_size(&map->map); |
| 88 | } |
| 89 | |
| 90 | struct oidmap_iter { |
| 91 | struct hashmap_iter h_iter; |
no test coverage detected