Skip to content

Latest commit

 

History

History
15 lines (15 loc) · 445 Bytes

README.md

File metadata and controls

15 lines (15 loc) · 445 Bytes

SimpleVector

Container, a simplified analogue of std::vector. A pointer wrapper has been written for this container. The RAII idiom is used.

Building and Run

  1. mkdir BuildSimpleVector && cd BuildSimpleVector
  2. cmake ..
  3. cmake --build .
  4. Start ./simple_vector or simple_vector.exe

System requirements and Stack

  1. C++17
  2. GCC version 8.1.0
  3. Cmake 3.21.2 (minimal 3.10)
  4. RAII

Future Plans