this repo has no description
1opam-version: "2.0" 2authors: ["Simon Cruanes" "Gabriel Radanne"] 3maintainer: "simon.cruanes.2007@m4x.org" 4license: "BSD-2-clause" 5synopsis: "Simple abstraction over `iter` functions, intended to iterate efficiently on collections while performing some transformations" 6build: [ 7 ["dune" "build" "@install" "-p" name "-j" jobs] 8 ["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc} 9 ["dune" "runtest" "-p" name "-j" jobs] {with-test & arch != "arm32" & arch != "x86_32"} 10] 11depends: [ 12 "base-bytes" 13 "result" 14 "seq" 15 "ocaml" { >= "4.03.0" } 16 "dune" { >= "1.1" } 17 "dune-configurator" 18 "qcheck" {with-test & >= "0.9"} 19 "qtest" {with-test} 20 "mdx" {with-test & >= "1.3" } 21 "odoc" {with-doc} 22] 23tags: [ "iter" "iterator" "iter" "fold" ] 24homepage: "https://github.com/c-cube/iter/" 25depopts: [ 26 "base-bigarray" 27] 28doc: "https://c-cube.github.io/iter/doc/" 29bug-reports: "https://github.com/c-cube/iter/issues" 30dev-repo: "git+https://github.com/c-cube/iter.git" 31url { 32 src: "https://github.com/c-cube/iter/archive/v1.5.tar.gz" 33 checksum: [ 34 "md5=b66942eced29eb73b69ea39987287f93" 35 "sha512=a591bf60ba8b51b9e6b9078bda987cd1c6d54ed5a20a27bbe61d938733e8e864666c249dcce25731480e22ca5d46007cb16e789947828807483163afc0077465" 36 ] 37}