FBX C++ API Reference
|
#include <fbxhashmap.h>
Iterate through every element in a hash map.
Definition at line 77 of file fbxhashmap.h.
Public Types | |
typedef ListItem | ListItemType |
typedef FbxPair< KeyType, ValueType > | KeyValuePair |
Public Member Functions | |
Iterator (const Iterator &pOther) | |
Copy constructor. More... | |
~Iterator () | |
Destructor. More... | |
KeyValuePair | operator* () const |
Used to dereference an iterator and give it a behavior more similar to a pointer. More... | |
void | Next () |
Advances the iterator to the next keyvaluepair in the hashmap. More... | |
bool | operator== (const Iterator &pOther) const |
Check equivalence between two iterators. More... | |
bool | operator!= (const Iterator &pOther) const |
Check inequivalence between 2 iterators. More... | |
Iterator & | operator= (const Iterator &pOther) |
Assign the current iterator to the one on the right hand side of the operator. More... | |
Friends | |
class | FbxHashMap |
typedef ListItem ListItemType |
Definition at line 81 of file fbxhashmap.h.
typedef FbxPair< KeyType, ValueType > KeyValuePair |
Definition at line 82 of file fbxhashmap.h.
Copy constructor.
Definition at line 87 of file fbxhashmap.h.
|
inline |
|
inline |
Used to dereference an iterator and give it a behavior more similar to a pointer.
Definition at line 105 of file fbxhashmap.h.
|
inline |
Advances the iterator to the next keyvaluepair in the hashmap.
It does not wrap around so advancing after reaching the last element will not point back to the first one.
Definition at line 125 of file fbxhashmap.h.
|
inline |
Check equivalence between two iterators.
There are 3 conditions for equivalence between 2 iterators: 1) Item being referenced by the iterator must be equivalent 2) They must point at the same index 3) They must point on the same map
Definition at line 162 of file fbxhashmap.h.
|
inline |
Check inequivalence between 2 iterators.
Please see operator== for more information.
Definition at line 173 of file fbxhashmap.h.
Assign the current iterator to the one on the right hand side of the operator.
After assignment they will reference the same object, at the same index, in the same map.
Definition at line 183 of file fbxhashmap.h.
|
friend |
Definition at line 206 of file fbxhashmap.h.