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