https://github.com/elixir-toniq/circular_buffer
https://github.com/elixir-toniq/circular_buffer
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/elixir-toniq/circular_buffer
- Owner: elixir-toniq
- Created: 2019-11-12T16:35:42.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-03-10T18:38:07.000Z (over 4 years ago)
- Last Synced: 2024-05-01T12:25:25.823Z (about 2 years ago)
- Language: Elixir
- Size: 36.1 KB
- Stars: 19
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CircularBuffer
CircularBuffer provides a general-purpose CircularBuffer data structure.
Docs: [https://hexdocs.pm/circular_buffer](https://hexdocs.pm/circular_buffer).
## Installation
```elixir
def deps do
[
{:circular_buffer, "~> 0.4"}
]
end
```
## Should I use this?
The entire codebase is less than 50 lines of code and has been tested using
property based testing. I believe the implementation is sound but it may not
be the highest performance library out there.