https://github.com/b1tflyyyy/vector-cpp
Simple vector implementation
https://github.com/b1tflyyyy/vector-cpp
cmake cpp cxx education free google mit-license open-source vector
Last synced: 3 months ago
JSON representation
Simple vector implementation
- Host: GitHub
- URL: https://github.com/b1tflyyyy/vector-cpp
- Owner: b1tflyyyy
- License: mit
- Created: 2024-06-25T17:36:39.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-06-24T14:20:54.000Z (12 months ago)
- Last Synced: 2025-09-10T00:05:32.610Z (10 months ago)
- Topics: cmake, cpp, cxx, education, free, google, mit-license, open-source, vector
- Language: C++
- Homepage:
- Size: 1020 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## ⚙️ Vector C++20 (Simple Implementation)
## 📜 Vector implemented features list:
- [x] `push_back()`
- [x] `reserve()`
- [x] `operator[]`
- [x] `is_empty()`
- [x] `size()`
- [x] `capacity()`
- [x] `move ctor`
- [x] `move assignment operator`
- [x] `copy ctor`
- [x] `copy assignment ctor`
- [x] `basic dtor`
- [x] `3 basic ctors`
## 🔗 Vector Iterator
- The basic FI(Forward Iterator) is also implemented here, and in the near future I will implement RAI(Random Access Iterator).