|
| T * | Add (const I id, const T &object) |
| |
| T * | Find (const I id) |
| |
| std::vector< const T * > | Items () const |
| |
| T * | Add (const I id, const T &object) |
| | copy object into the container.
|
| |
| T * | Find (const I id) |
| | Find object by id in the container
|
| |
| const T * | Find (const I id) const |
| | Find object by id in the container
|
| |
| const std::vector< const T * > & | Items () const |
| | List all the items in the container.
|
| |
| const std::unordered_map< I, T > & | Dict () const |
| | List all the items in the container.
|
| |
| IndexedList & | operator= (const IndexedList &other) |
| | Copy the container with objects.
|
| |
template<typename I, typename T>
class apollo::planning::ThreadSafeIndexedList< I, T >
在文件 indexed_list.h 第 109 行定义.