ada/util/hash_tables/

Ada implementation of hash tables. Useful if you want to store items associated with keys and later look them up in constant time, O(1).

Features

• Generic to allow all kinds of content, even limited types.
• String hash tables provided (wrapper for String_Access).
• Private implementation: can't mess around with this.
• Variable size (always prime).