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 "fmlib" {=version} 45] 46 47url { 48 src: "https://github.com/hbr/fmlib/archive/0.3.1.tar.gz" 49 checksum: [ 50 "sha256=ed807c1c45860570288f1b062cc6d15cefc12d97908095be0108ef390577d300" 51 "md5=7c9dde2b12d22a3f40a8e00c0c793ba6" 52 ] 53}