|
| | CollectionTraitsMap () |
| |
| | CollectionTraitsMap (const tContainer &c) |
| |
| tValType & | operator[] (const tKeyType &aKey) |
| |
| const tValType & | operator[] (const tKeyType &aKey) const |
| |
| | map () |
| |
| | map (const _Compare &__comp, const allocator_type &__a=allocator_type()) |
| |
| | map (_InputIterator __first, _InputIterator __last) |
| |
| | map (_InputIterator __first, _InputIterator __last, const _Compare &__comp, const allocator_type &__a ASTL_ALLOCATOR_TYPE_DFL) |
| |
| | map (_InputIterator __first, _InputIterator __last, const _Compare &__comp) |
| |
| | map (const map< KEYT::tValueType, VALT::tValueType, _Compare, _Alloc > &__x) |
| |
map< KEYT::tValueType,
VALT::tValueType, _Compare,
_Alloc > & | operator= (const map< KEYT::tValueType, VALT::tValueType, _Compare, _Alloc > &__x) |
| |
| key_compare | key_comp () const |
| |
| value_compare | value_comp () const |
| |
| allocator_type | get_allocator () const |
| |
| iterator | begin () |
| |
| const_iterator | begin () const |
| |
| iterator | end () |
| |
| const_iterator | end () const |
| |
| reverse_iterator | rbegin () |
| |
| const_reverse_iterator | rbegin () const |
| |
| reverse_iterator | rend () |
| |
| const_reverse_iterator | rend () const |
| |
| bool | empty () const |
| |
| size_type | size () const |
| |
| size_type | max_size () const |
| |
| VALT::tValueType & | operator[] (const key_type &__k) |
| |
| const VALT::tValueType & | operator[] (const key_type &__k) const |
| |
| void | swap (map< KEYT::tValueType, VALT::tValueType, _Compare, _Alloc > &__x) |
| |
| pair< iterator, bool > | insert (const value_type &__x) |
| |
| iterator | insert (iterator position, const value_type &__x) |
| |
| void | insert (_InputIterator __first, _InputIterator __last) |
| |
| void | erase (iterator __position) |
| |
| size_type | erase (const key_type &__x) |
| |
| void | erase (iterator __first, iterator __last) |
| |
| void | clear () |
| |
| iterator | find (const key_type &__x) |
| |
| const_iterator | find (const key_type &__x) const |
| |
| size_type | count (const key_type &__x) const |
| |
| iterator | lower_bound (const key_type &__x) |
| |
| const_iterator | lower_bound (const key_type &__x) const |
| |
| iterator | upper_bound (const key_type &__x) |
| |
| const_iterator | upper_bound (const key_type &__x) const |
| |
| pair< iterator, iterator > | equal_range (const key_type &__x) |
| |
pair< const_iterator,
const_iterator > | equal_range (const key_type &__x) const |
| |
|
| static tContainer::iterator | Find (const tContainer &aContainer, const tKeyType &aVal) |
| |
| static tBool | Reserve (tContainer &aContainer, tU32 anNumElements) |
| |
| static tBool | Resize (tContainer &aContainer, tU32 anNumElements) |
| |
| static tBool | CanPut (const Var &aKey, const Var &aValue) |
| |
| static tBool | Put (tContainer &aContainer, const Var &aKey, const Var &aValue) |
| |
| static Var | Get (const tContainer &aContainer, const Var &aKey) |
| |
| static Var | GetFirst (const tContainer &aContainer) |
| |
| static tBool | SetFirst (tContainer &aContainer, const Var &aValue) |
| |
| static Var | GetLast (const tContainer &aContainer) |
| |
| static tBool | SetLast (tContainer &aContainer, const Var &aValue) |
| |
| static void | AddValue (tContainer &aContainer, const tValType &aV) |
| |
| static void | Add (tContainer &aContainer, const Var &aVar) |
| |
| static tBool | RemoveFirst (tContainer &aContainer) |
| |
| static tBool | RemoveLast (tContainer &aContainer) |
| |
| static void | GetIterator (const tContainer &aContainer, const typename tContainer::const_iterator &aIt, Var &aKey, Var &aVal) |
| |
| static tPtr | GetDataPtr (const tContainer &aContainer) |
| |
| static tSize | GetDataSize (const tContainer &aContainer) |
| |