this repo has no description
1opam-version: "2.0" 2maintainer: "simon.cruanes.2007@m4x.org" 3authors: "Simon Cruanes" 4homepage: "https://github.com/c-cube/olinq/" 5bug-reports: "https://github.com/c-cube/olinq/issues/" 6tags: ["linq" "query" "join" "group" "collection"] 7dev-repo: "git+https://github.com/c-cube/olinq.git" 8build: [ 9 [make "build"] 10 [make "doc"] {with-doc} 11] 12install: [make "install"] 13remove: ["ocamlfind" "remove" "olinq"] 14depends: [ 15 "ocaml" {>= "4.00.0" & < "5.0.0"} 16 "ocamlfind" {build} 17 "ocamlbuild" {build} 18 "base-bytes" 19] 20synopsis: 21 "powerful combinators for iteration, transformation and combination of collections" 22description: """ 23The purpose is to provide powerful combinators to express iteration, 24transformation and combination of collections of items living in a type `'a t`, 25such as join, group_by, union, flat_map, etc. for in-memory processing.""" 26flags: light-uninstall 27url { 28 src: "https://github.com/c-cube/olinq/archive/0.2.tar.gz" 29 checksum: [ 30 "sha256=df94396c38e89a6b0562ab97b8409f65380932e4a386b991a0d19717782ef027" 31 "md5=cef6139466f5fe14a871836c4cb7994b" 32 ] 33}