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

This is a package candidate release! Here you can preview how this package release will appear once published to the main package index (which can be accomplished via the 'maintain' link below). Please note that once a package has been published to the main package index it cannot be undone! Please consult the package uploading documentation for more information.

[maintain] [Publish]

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


[Skip to Readme]

Properties

Versions 0.1, 0.1, 0.1.0.1, 0.1.0.2, 0.1.1, 0.2
Change log CHANGELOG.md
Dependencies base (>=4.10.1 && <4.13), 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 2019-04-11T18:31:02Z

Modules

[Index] [Quick Jump]

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


Readme for ring-buffers-0.1

[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.