this repo has no description
1opam-version: "2.0"
2
3synopsis: "Standard datatypes of Fmlib"
4
5description: """
6
7Some small wrappers around ocamls stdlib modules to facilitate more functional
8programming. E.g. the module 'Option' and 'Result' support the 'let*' operator.
9The module 'Array' has a 'push' operation to append functionally elements at the
10end.
11
12Besides some wrapper around Stdlib modules it has the additional modules:
13
14- Deque: A double ended queue with efficient pushing of elements from the front
15 and the rear end and efficient popping of elements from the front end.
16
17- Btree: Finite sets and maps based on B trees. B trees have better cache
18 efficiency and locality than AVL or Redblack trees.
19
20"""
21
22
23maintainer: "Helmut Brandl <helmut.brandl@gmx.net>"
24
25authors: [ "Helmut Brandl <helmut.brandl@gmx.net>" ]
26
27license: "BSD-3-Clause"
28homepage: "https://github.com/hbr/fmlib"
29dev-repo: "git+https://github.com/hbr/fmlib.git"
30bug-reports: "https://github.com/hbr/fmlib/issues"
31
32
33build: [
34 ["dune" "subst"] {dev}
35 ["dune" "build" "-p" name "-j" jobs "@install" "@doc" {with-doc}]
36]
37
38
39depends: [
40 "ocaml" {>= "4.08.0"}
41 "dune" {>= "1.10"}
42 "odoc" {with-doc}
43 "ppx_inline_test" {>= "v0.13.0"}
44]
45url {
46 src: "https://github.com/hbr/fmlib/archive/0.5.0.tar.gz"
47 checksum: [
48 "sha256=994eefac793a19fc7495756089d383d8b87623863ebee4e79941f30f7f60cae3"
49 "md5=6c083a2187edf29ca1920630a776071e"
50 ]
51}