-
Notifications
You must be signed in to change notification settings - Fork 1
Add RingBuffer #56
Copy link
Copy link
Open
Labels
enhancementNew feature or requestNew feature or requestexamplesAdd an application showcasing sthAdd an application showcasing sth
Milestone
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestexamplesAdd an application showcasing sthAdd an application showcasing sth
A ring buffer is an array together with read and write operations that wrap around. That is, when the
last position of the array is reached, writing continues at the begin of the array, thereby erasing the oldest
entries. The read operation starts at the oldest entry in the array.
handled in PR: #88