#include <indexed_list.h>
|
| 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. If the id is already exist, overwrite the object in the container. More...
|
| |
| T * | Find (const I id) |
| | Find object by id in the container. More...
|
| |
| const T * | Find (const I id) const |
| | Find object by id in the container. More...
|
| |
| const std::vector< const T * > & | Items () const |
| | List all the items in the container. More...
|
| |
| const std::unordered_map< I, T > & | Dict () const |
| | List all the items in the container. More...
|
| |
| IndexedList & | operator= (const IndexedList &other) |
| | Copy the container with objects. More...
|
| |
◆ Add()
template<typename I, typename T>
◆ Find()
template<typename I, typename T>
◆ Items()
template<typename I, typename T>
The documentation for this class was generated from the following file: