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" { >= "2.0" } 17 "dune-configurator" 18 "qcheck-core" {with-test} 19 "ounit2" {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/sequence/archive/v1.6.tar.gz" 33 checksum: [ 34 "md5=917925453e84ea3db4a584ca1087001b" 35 "sha512=353c408aa95d5670600eae6d5d30a8bd5bae6d7dbe061816507de42e79131899bf6607c7cf08ae3273e9e563f08bea34c525f538208ac379eaf6a565ffd1628e" 36 ] 37}