úÎé    None:T Disk based hash tableçThe Haskell interface has two types, distinguishing between read-only and read-write hash tables. Operations on the RW variant are in the IO monad, while operations on RO tables are all pure (after opening the table, naturally)."The datastructures are all strict. 3Internal function to handle error message interfacegIf argument points to NULL, then return "No message" Otherwise, return its contents and release memory$open a hash table in read-write mode#open a hash table in read-only mode=Open a hash table in read-write mode and pass it to an actionNOnce the action is is complete, the hashtable is closed (and sync'ed to disk).#Retrieve the size of the hash table#Retrieve the size of the hash table%insert an element into the hash tablekReturns whether an insertion took place (if an object with that key already exists, no insertion is made). Lookup by key  Lookup by key Modify a value Reserve space in the hash table.If the operation fails, an exception is raised  keyvalue hash tableTrue if inserted, False if not            'diskhash-0.0.1.2-H4KWVyCxheiD9NW8G4QhoQ Data.DiskHash DiskHashRW DiskHashROhtOpenRWhtOpenROwithDiskHashRWhtSizeRWhtSizeROhtInsert htLookupRW htLookupROhtModify htReserve HashTable_tgetError c_dht_free_p c_dht_size c_dht_insert c_dht_reserve c_dht_lookup c_dht_open2open'