|
ORIGINAL
|
Dynamic array container with automatic resizing. More...


Go to the source code of this file.
Classes | |
| class | original::vector< TYPE, ALLOC > |
| Dynamic array container with amortized constant time operations. More... | |
| class | original::vector< TYPE, ALLOC >::Iterator |
| Random access iterator implementation for vector. More... | |
Namespaces | |
| namespace | original |
| Main namespace for the project Original. | |
| namespace | std |
| Standard namespace extensions for original::alternative. | |
Functions | |
| template<typename T , typename... ARGS> | |
| vector< T > | original::makeVector (u_integer size, ARGS &&... args) |
| template<typename TYPE , typename ALLOC > | |
| void | std::swap (original::vector< TYPE, ALLOC > &lhs, original::vector< TYPE, ALLOC > &rhs) noexcept |
Dynamic array container with automatic resizing.
Implements a vector container with efficient operations and auto-centering memory management. Supports random access and iterator-based traversal.