#include <btHashMap.h>
Public Member Functions | |
void | clear () |
Value * | find (const Key &key) |
const Value * | find (const Key &key) const |
int | findIndex (const Key &key) const |
Value * | getAtIndex (int index) |
const Value * | getAtIndex (int index) const |
void | insert (const Key &key, const Value &value) |
Value * | operator[] (const Key &key) |
void | remove (const Key &key) |
int | size () const |
Protected Member Functions | |
void | growTables (const Key &key) |
Protected Attributes | |
btAlignedObjectArray< int > | m_hashTable |
btAlignedObjectArray< Key > | m_keyArray |
btAlignedObjectArray< int > | m_next |
btAlignedObjectArray< Value > | m_valueArray |
The btHashMap template class implements a generic and lightweight hashmap. A basic sample of how to use btHashMap is located in Demos\BasicDemo\main.cpp
Definition at line 204 of file btHashMap.h.
void btHashMap< Key, Value >::clear | ( | ) | [inline] |
Definition at line 424 of file btHashMap.h.
Value* btHashMap< Key, Value >::find | ( | const Key & | key | ) | [inline] |
Definition at line 396 of file btHashMap.h.
const Value* btHashMap< Key, Value >::find | ( | const Key & | key | ) | const [inline] |
Definition at line 386 of file btHashMap.h.
int btHashMap< Key, Value >::findIndex | ( | const Key & | key | ) | const [inline] |
Definition at line 407 of file btHashMap.h.
Value* btHashMap< Key, Value >::getAtIndex | ( | int | index | ) | [inline] |
Definition at line 375 of file btHashMap.h.
const Value* btHashMap< Key, Value >::getAtIndex | ( | int | index | ) | const [inline] |
Definition at line 368 of file btHashMap.h.
void btHashMap< Key, Value >::growTables | ( | const Key & | key | ) | [inline, protected] |
Definition at line 214 of file btHashMap.h.
void btHashMap< Key, Value >::insert | ( | const Key & | key, | |
const Value & | value | |||
) | [inline] |
Definition at line 253 of file btHashMap.h.
Value* btHashMap< Key, Value >::operator[] | ( | const Key & | key | ) | [inline] |
Definition at line 382 of file btHashMap.h.
void btHashMap< Key, Value >::remove | ( | const Key & | key | ) | [inline] |
Definition at line 280 of file btHashMap.h.
int btHashMap< Key, Value >::size | ( | ) | const [inline] |
Definition at line 363 of file btHashMap.h.
btAlignedObjectArray<int> btHashMap< Key, Value >::m_hashTable [protected] |
Definition at line 208 of file btHashMap.h.
btAlignedObjectArray<Key> btHashMap< Key, Value >::m_keyArray [protected] |
Definition at line 212 of file btHashMap.h.
btAlignedObjectArray<int> btHashMap< Key, Value >::m_next [protected] |
Definition at line 209 of file btHashMap.h.
btAlignedObjectArray<Value> btHashMap< Key, Value >::m_valueArray [protected] |
Definition at line 211 of file btHashMap.h.