1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
Source: ocaml-res
Section: ocaml
Priority: optional
Maintainer: Debian OCaml Maintainers <debian-ocaml-maint@lists.debian.org>
Build-Depends:
debhelper-compat (= 13),
ocaml,
ocaml-dune,
dh-ocaml (>= 1.2)
Standards-Version: 4.7.0
Rules-Requires-Root: no
Vcs-Browser: https://salsa.debian.org/ocaml-team/ocaml-res
Vcs-Git: https://salsa.debian.org/ocaml-team/ocaml-res.git
Homepage: https://mmottl.github.io/res/
Package: libres-ocaml-dev
Architecture: any
Depends:
${ocaml:Depends},
${shlibs:Depends},
${misc:Depends}
Provides: ${ocaml:Provides}
Recommends: ocaml-findlib
Description: OCaml library for automatically resizing contiguous data structure
This OCaml library consists of a set of modules which implement
automatically resizing (i.e. reallocating) data structures that consume
a contiguous part of memory.
.
This allows appending and removing of elements to/from arrays (both
boxed and unboxed), strings (i.e. buffers), bit strings and weak arrays
while still maintaining fast constant-time access to elements.
.
There are also functors that allow the generation of similar modules
which use different reallocation strategies.
|