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]

Modules

[Last Documentation]

  • RingBuffers
    • RingBuffers.Lifted
    • RingBuffers.Unboxed
    • RingBuffers.Unlifted

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.6.4), 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-07-09T05:00:32Z
Distributions
Downloads 1288 total (12 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
All reported builds failed as of 2020-07-09 [all 2 reports]

Readme for ring-buffers-0.1.0.2

[back to package description]

ring-buffers

Hackage BSD3 license

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.