forked from hbr/fmlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fmlib_std.opam
44 lines (29 loc) · 1.17 KB
/
fmlib_std.opam
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
35
36
37
38
39
40
41
42
43
44
opam-version: "2.0"
synopsis: "Standard datatypes of Fmlib"
description: """
Some small wrappers around ocamls stdlib modules to facilitate more functional
programming. E.g. the module 'Option' and 'Result' support the 'let*' operator.
The module 'Array' has a 'push' operation to append functionally elements at the
end.
Besides some wrapper around Stdlib modules it has the additional modules:
- Deque: A double ended queue with efficient pushing of elements from the front
and the rear end and efficient popping of elements from the front end.
- Btree: Finite sets and maps based on B trees. B trees have better cache
efficiency and locality than AVL or Redblack trees.
"""
maintainer: "Helmut Brandl <helmut.brandl@gmx.net>"
authors: [ "Helmut Brandl <helmut.brandl@gmx.net>" ]
license: "BSD-3-Clause"
homepage: "https://github.com/hbr/fmlib"
dev-repo: "git+https://github.com/hbr/fmlib.git"
bug-reports: "https://github.com/hbr/fmlib/issues"
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs "@install" "@doc" {with-doc}]
]
depends: [
"ocaml" {>= "4.08.0"}
"dune" {>= "3.0.0"}
"odoc" {with-doc}
"ppx_inline_test" {>= "v0.13.0"}
]