rrb-vector: Efficient RRB-Vectors

[ bsd3, data-structures, library ] [ Propose Tags ]

An RRB-Vector is an efficient sequence data structure. It supports fast indexing, iteration, concatenation and splitting.

Comparison with Data.Sequence

Seq a is a container with a very similar API. RRB-Vectors are generally faster for indexing and iteration, while sequences are faster for access to the front/back (amortized \(O(1)\)).


[Skip to Readme]

Downloads

Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1.0.0, 0.1.1.0, 0.2.0.0, 0.2.0.1, 0.2.1.0
Dependencies base (>=4.11 && <5), deepseq (>=1.4.3 && <1.5), indexed-traversable (>=0.1 && <0.2), primitive (>=0.7 && <0.8) [details]
License BSD-3-Clause
Copyright 2021 konsumlamm
Author konsumlamm
Maintainer konsumlamm@gmail.com
Revised Revision 1 made by konsumlamm at 2021-06-13T12:43:30Z
Category Data Structures
Home page https://github.com/konsumlamm/rrb-vector
Bug tracker https://github.com/konsumlamm/rrb-vector/issues
Source repo head: git clone https://github.com/konsumlamm/rrb-vector
Uploaded by konsumlamm at 2021-06-13T11:46:36Z
Distributions LTSHaskell:0.2.1.0, NixOS:0.2.1.0, Stackage:0.2.1.0
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 574 total (26 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2021-06-13 [all 1 reports]

Readme for rrb-vector-0.1.0.0

[back to package description]

rbb-vector

An implementation of a Relaxed Radix Balanced Vector (RRB-Vector).

For more information, see rrb-vector on Hackage.