Skip to content

Pablyco/Custom-Vector

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DynArray – Custom "Vector"

A small C++20 project implementing a simple custom dynamic array container, DynArray, for learning and practicing manual memory management in C++.

Features

  • Dynamic resizing with growing capacity.
  • PushBack support.
  • Index access with operator[].
  • Copy constructor and copy assignment.
  • Move constructor and move assignment.
  • Basic iterator support for range-based for loops.
  • Simple manual tests are included.

Purpose

This project is mainly educational and is not intended to replace std::vector.

Test

You can test this custom vector by running main.cpp.

About

A small C++20 project implementing a simple custom dynamic array container, `DynArray`, for learning and practicing manual memory management in C++.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors