this repo has no description
1opam-version: "2.0" 2maintainer: "Joseph Abrahamson <me@jspha.com>" 3authors: "Joseph Abrahamson <me@jspha.com>" 4homepage: "https://github.com/tel/ocaml-fstreams" 5bug-reports: "https://github.com/tel/ocaml-fstreams/issues" 6license: "BSD-3-Clause" 7dev-repo: "git+https://github.com/tel/ocaml-fstreams.git" 8build: [ 9 ["./configure" "--prefix=%{prefix}%"] 10 [make] 11] 12install: [make "install"] 13remove: ["ocamlfind" "remove" "fstreams"] 14depends: [ 15 "ocaml" {< "5.0"} 16 "ocamlfind" {build} 17 "ocamlbuild" {build} 18] 19synopsis: "Functional, lazy, infinite streams." 20description: """ 21A very standard infinite data structure is the stream which lazily 22determines its current and next values and even whether they exist or 23not! This data structure is useful for describing computations which 24are generated and consumed step-by-step and is a powerful basic tool 25for many lazy algorithms. 26 27Included in this module are two submodules, Infinite and 28Finite. Infinite streams are streams which are guaranteed to always 29have a next value and Finite streams are streams which may terminate 30but are not obliged to. 31 32Mathematically, Infinite streams are the greatest fixed point of the 33functor F X = A * X and Finite streams are the greatest fixed point of 34the functor F X = 1 + A * X.""" 35flags: light-uninstall 36url { 37 src: "https://github.com/tel/ocaml-fstreams/archive/0.2.1.tar.gz" 38 checksum: [ 39 "sha256=1aa19a9c7651b81510d3f9c06f4928545ba3db5e4e79748e7908bf530c899e0a" 40 "md5=3564f973697f3ba032d39e02db56e8ba" 41 ] 42}