Definition at line 54 of file traits_map.h.
#include <mrpt/utils/traits_map.h>

Public Member Functions | |
Constructors, read/write access and other operations | |
| size_t | size () const |
| bool | empty () const |
| size_type | count (const key_type i) const |
| Count how many entries have a given key value - unlike std::map<K,V>, recall that this class will say an element i<N-1 exists just due to an insertion of element at N. | |
| size_type | max_size () const |
| Maximum size due to system limits. | |
| const vec_t & | getVector () const |
| Return a read-only reference to the internal vector. | |
| void | clear () |
| Clear the contents of this container. | |
| void | swap (map_as_vector< KEY, VALUE > &o) |
| Efficient swap with another object. | |
| VALUE & | operator[] (const size_t i) |
| Write/read via [i] operator, that creates all elements up to (and including) the i'th if they didn't exist already. | |
| void | insert (const iterator &guess_point, const value_type &keyvalpair) |
| Insert pair<key,val>, as in std::map (guess_point is actually ignored in this class) | |
| void | insert (const value_type &keyvalpair) |
| Insert pair<key,val>, as in std::map. | |
| iterator | find (const size_t i) |
| Constant-time find, returning an iterator to the <key,val> pair or to end() if not found (that is, if it's above the maximum index in the vector) | |
| const_iterator | find (const size_t i) const |
| Constant-time find, returning an iterator to the <key,val> pair or to end() if not found (that is, if it's above the maximum index in the vector) | |
Iterators stuff and other types | |
| typedef KEY | key_type |
| typedef std::pair< KEY, VALUE > | value_type |
| typedef mrpt::aligned_containers < value_type >::vector_t | vec_t |
| typedef vec_t::size_type | size_type |
| typedef vec_t::iterator | iterator |
| typedef vec_t::const_iterator | const_iterator |
| typedef std::reverse_iterator < iterator > | reverse_iterator |
| typedef std::reverse_iterator < const_iterator > | const_reverse_iterator |
| 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 |
|
inherited |
Definition at line 69 of file map_as_vector.h.
|
inherited |
Definition at line 71 of file map_as_vector.h.
|
inherited |
Definition at line 68 of file map_as_vector.h.
|
inherited |
Definition at line 64 of file map_as_vector.h.
|
inherited |
Definition at line 70 of file map_as_vector.h.
|
inherited |
Definition at line 67 of file map_as_vector.h.
|
inherited |
Definition at line 65 of file map_as_vector.h.
|
inherited |
Definition at line 66 of file map_as_vector.h.
|
inlineinherited |
Definition at line 73 of file map_as_vector.h.
References mrpt::utils::map_as_vector< KEY, VALUE >::m_vec.
Referenced by mrpt::utils::map_as_vector< KEY, VALUE >::rend().
|
inlineinherited |
Definition at line 75 of file map_as_vector.h.
References mrpt::utils::map_as_vector< KEY, VALUE >::m_vec.
|
inlineinherited |
Clear the contents of this container.
Definition at line 106 of file map_as_vector.h.
References mrpt::utils::map_as_vector< KEY, VALUE >::m_vec.
|
inlineinherited |
Count how many entries have a given key value - unlike std::map<K,V>, recall that this class will say an element i<N-1 exists just due to an insertion of element at N.
Definition at line 97 of file map_as_vector.h.
References mrpt::utils::map_as_vector< KEY, VALUE >::m_vec.
|
inlineinherited |
Definition at line 94 of file map_as_vector.h.
References mrpt::utils::map_as_vector< KEY, VALUE >::m_vec.
|
inlineinherited |
Definition at line 74 of file map_as_vector.h.
References mrpt::utils::map_as_vector< KEY, VALUE >::m_vec.
Referenced by mrpt::utils::map_as_vector< KEY, VALUE >::rbegin().
|
inlineinherited |
Definition at line 76 of file map_as_vector.h.
References mrpt::utils::map_as_vector< KEY, VALUE >::m_vec.
|
inlineinherited |
Constant-time find, returning an iterator to the <key,val> pair or to end() if not found (that is, if it's above the maximum index in the vector)
Definition at line 124 of file map_as_vector.h.
References mrpt::utils::map_as_vector< KEY, VALUE >::m_vec.
|
inlineinherited |
Constant-time find, returning an iterator to the <key,val> pair or to end() if not found (that is, if it's above the maximum index in the vector)
Definition at line 126 of file map_as_vector.h.
References mrpt::utils::map_as_vector< KEY, VALUE >::m_vec.
|
inlineinherited |
Return a read-only reference to the internal vector.
Definition at line 103 of file map_as_vector.h.
References mrpt::utils::map_as_vector< KEY, VALUE >::m_vec.
|
inlineinherited |
Insert pair<key,val>, as in std::map (guess_point is actually ignored in this class)
Definition at line 119 of file map_as_vector.h.
References mrpt::utils::map_as_vector< KEY, VALUE >::operator[]().
|
inlineinherited |
Insert pair<key,val>, as in std::map.
Definition at line 121 of file map_as_vector.h.
References mrpt::utils::map_as_vector< KEY, VALUE >::operator[]().
|
inlineinherited |
Maximum size due to system limits.
Definition at line 100 of file map_as_vector.h.
References mrpt::utils::map_as_vector< KEY, VALUE >::m_vec.
|
inlineinherited |
Write/read via [i] operator, that creates all elements up to (and including) the i'th if they didn't exist already.
Definition at line 112 of file map_as_vector.h.
References mrpt::utils::map_as_vector< KEY, VALUE >::m_vec.
Referenced by mrpt::utils::map_as_vector< KEY, VALUE >::insert().
|
inlineinherited |
Definition at line 77 of file map_as_vector.h.
References mrpt::utils::map_as_vector< KEY, VALUE >::end().
|
inlineinherited |
Definition at line 78 of file map_as_vector.h.
References mrpt::utils::map_as_vector< KEY, VALUE >::end().
|
inlineinherited |
Definition at line 79 of file map_as_vector.h.
References mrpt::utils::map_as_vector< KEY, VALUE >::begin().
|
inlineinherited |
Definition at line 80 of file map_as_vector.h.
References mrpt::utils::map_as_vector< KEY, VALUE >::begin().
|
inlineinherited |
Definition at line 93 of file map_as_vector.h.
References mrpt::utils::map_as_vector< KEY, VALUE >::m_vec.
|
inlineinherited |
Efficient swap with another object.
Definition at line 109 of file map_as_vector.h.
References mrpt::utils::map_as_vector< KEY, VALUE >::m_vec.
| Page generated by Doxygen 1.8.3 for MRPT 0.9.6 SVN: at Fri Feb 15 22:05:02 EST 2013 |