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" {>= "3.0.0"} 42 "odoc" {with-doc} 43 "ppx_inline_test" {>= "v0.13.0"} 44] 45url { 46 src: "https://github.com/hbr/fmlib/archive/0.5.5.tar.gz" 47 checksum: [ 48 "sha256=17d85e2ca14a57f7c7292f5cb53db1da63044487b5149cf366ea76db92b55818" 49 "md5=dd0b8db1f0de867708797cfbc471d652" 50 ] 51}