OSVR-Core
|
A basic policy for use with a vector or similar container, where you don't expect a lot of additions or removals, and thus search/insertion/removal speed is not critical. More...
#include <UniqueContainer.h>
Classes | |
struct | Specialized |
A basic policy for use with a vector or similar container, where you don't expect a lot of additions or removals, and thus search/insertion/removal speed is not critical.
push_back is used for insertion, member .erase is used for removal, and std::find is used for search and presence detection.