ring-buffers: mutable ring buffers with atomic updates in GHC Haskell

[ bsd3, data, library ] [ Propose Tags ]

mutable ring buffers with atomic updates in GHC Haskell, using the contiguous api internally to provide multiple array backends


[Skip to Readme]

Flags

Manual Flags

NameDescriptionDefault
checked

Check all array indexing. This makes most functions slower, but it replaces segfaults with descriptive errors. This should only be used for debugging.

Disabled

Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1, 0.1.0.1, 0.1.0.2, 0.1.1, 0.2
Change log CHANGELOG.md
Dependencies base (>=4.10.1 && <5), contiguous (>=0.3.2), primitive (>=0.7.0.0), primitive-unlifted (>=0.1 && <0.2), semirings (>=0.3) [details]
License BSD-3-Clause
Copyright 2019 chessai
Author chessai
Maintainer chessai1996@gmail.com
Category Data
Home page https://github.com/chessai/ring-buffers
Bug tracker https://github.com/chessai/ring-buffers/issues
Source repo head: git clone https://github.com/chessai/ring-buffers.git
Uploaded by chessai at 2020-11-30T23:56:02Z
Distributions
Downloads 1282 total (11 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2020-12-01 [all 1 reports]

Readme for ring-buffers-0.2

[back to package description]

ring-buffers

Hackage BSD3 license Build Status

This package provides concurrent, mutable ring buffers with atomic updates in GHC Haskell.

It uses the contiguous package to provide multiple array backends found in the primitive package.