package pvec
Install
Dune Dependency
Authors
Maintainers
Sources
md5=f3f3ae622e9cfc657de111f40ddeb992
sha512=1dfafbe6ce9e17cdf0a064b0959bd9eaf7f58bed3df1b012256156dfc29e7c8bf362862107dfb04798701cb7eedb2fe380b23a6f9ee10f30c89eaf1fb9061480
Description
Published: 30 Nov 2022
README
Persistent vectors for OCaml
pvec
implements persistent vectors that
like arrays, store
n
elements with keys ranging from0
ton-1
,also like arrays, support efficient random read and write access, but
unlike arrays, are persistent/immutable and resize dynamically.
Until recently I tried using lists until it stopped making sense, then transitioned to arrays where I had to. The mutable nature of arrays often introduced bugs. In some sense, I was trading speed for safety.
With persistent vectors I can have the best of both worlds. In many cases they strike a good balance between safety and speed.
Documentation
The pvec
library exposes a single module Pvec
. You can explore its interface online.
https://pkel.github.io/pvec/pvec/Pvec/index.html
This documentation is derived from the main
branch on Github. You might have obtained a different version of the library from Opam.
If you're interested in the underlying data-structure, I recommend reading hyPiRion's series of blog posts.
License
This library is distributed under the ISC license. See ./LICENSE
.
Progress
[x] base implementation
[x] test random updates & persistence
[x] basic documentation
[x] setup CI
[x] provide a couple of convenience functions (fold, map)
[x] write intro to
pvec.mli
and readme[x] pick license
[x] release
[ ] more benchmarks
[ ] slice/range support for seq, copy, map & fold
Dev Dependencies (3)
-
odoc
with-doc
-
ppx_expect
with-test
-
mtime
with-test & < "2.0.0"
Used by
None
Conflicts
None