Skip to content
/ ca Public

c++ circular buffer implementation

License

Notifications You must be signed in to change notification settings

user1095108/ca

Folders and files

NameName
Last commit message
Last commit date

Latest commit

f48fb0a · Apr 21, 2024
Sep 27, 2021
Mar 15, 2024
Dec 26, 2023
Apr 21, 2024
Apr 21, 2024
Apr 8, 2024
Nov 17, 2023
Mar 17, 2024

Repository files navigation

ca

This is a c++ implementation of an array deque (circular buffer).

Every iterator is invalidated after insertion or erasure, including end(). Returned iterators are always valid.

build instructions

g++ -std=c++20 -Ofast array.cpp -o a

resources