28 p_obj = this->front();
38 void PushBack(T p_obj) { this->push_back(p_obj); }
45 void Remove(T p_obj) { this->remove(p_obj); }
[AI] A utility list extending the STL list<T>, providing simplified PushBack, Remove,...
void PushBack(T p_obj)
[AI] Pushes a copy of the provided object to the back of the list.
MxBool PopFront(T &p_obj)
[AI] Removes and returns the first element of the list.
void Remove(T p_obj)
[AI] Removes all matching objects from the list.
#define list
[AI] Macro alias for List<T>, replacing std::list<T>.
[AI] STL compatibility layer header to provide consistent STL (Standard Template Library) types and a...