ORIGINAL
Loading...
Searching...
No Matches
Classes | Namespaces | Functions
vector.h File Reference

Dynamic array container with automatic resizing. More...

#include "baseList.h"
#include "iterationStream.h"
#include "array.h"
Include dependency graph for vector.h:
This graph shows which files directly or indirectly include this file:

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
 

Detailed Description

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.