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 "ocaml" { >= "4.03.0" & < "5.0" } 15 "dune" { >= "1.1" } 16 "dune-configurator" 17 "qcheck" {with-test & >= "0.9"} 18 "qtest" {with-test} 19 "mdx" {with-test & >= "1.3" } 20 "odoc" {with-doc} 21] 22tags: [ "iter" "iterator" "iter" "fold" ] 23homepage: "https://github.com/c-cube/iter/" 24depopts: [ 25 "base-bigarray" 26] 27doc: "https://c-cube.github.io/iter/doc/" 28bug-reports: "https://github.com/c-cube/iter/issues" 29dev-repo: "git+https://github.com/c-cube/iter.git" 30url { 31 src: "https://github.com/c-cube/sequence/archive/v1.4.tar.gz" 32 checksum: [ 33 "md5=24b1ea680cd2f8d3ee664ea21837e58b" 34 "sha512=8bcb6ddaab69aa18a8489a2287313227d59062fd554f70373a10bdbe1d1eabe4b199860223709fe7baa917d0d47aedeed895ed6d610a989ca540e00fe9cd135b" 35 ] 36}