Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

SRP Hash Tables are high-performance, in-memory tables.

MethodDescription
SRP_HashTable_CreateCreates an SRP Hash Table
SRP_HashTable_ContainsDetermines whether or not a key exists in an SRP Hash Table
SRP_HashTable_CountGets the number of key-value pairs in an SRP Hash Table
SRP_HashTable_GetGet the value paired with a given key in an SRP Hash Table
SRP_HashTable_GetKeysGets all the keys of an SRP Hash Table in no particular order
SRP_HashTable_GetValuesGets all the values stored in an SRP Hash Table in no particular order
SRP_HashTable_GetKeyValuePairsGets all the keys and their paired values of an SRP Hash Table in no particular order
SRP_HashTable_SetPairs a value with a given key in an SRP Hash Table
SRP_HashTable_ReleaseReleases the handle to an SRP Hash Table
SRP_HashTable_RemoveRemoves a key and it's paired value from an SRP Hash Table

...