this repo has no description
1opam-version: "2.0" 2maintainer: "Jane Street developers" 3authors: ["Jane Street Group, LLC"] 4homepage: "https://github.com/janestreet/accessor" 5bug-reports: "https://github.com/janestreet/accessor/issues" 6dev-repo: "git+https://github.com/janestreet/accessor.git" 7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/accessor/index.html" 8license: "MIT" 9build: [ 10 ["dune" "build" "-p" name "-j" jobs] 11] 12depends: [ 13 "ocaml" {>= "4.09.0"} 14 "dune" {>= "2.0.0"} 15] 16synopsis: "A library that makes it nicer to work with nested functional data structures" 17description: " 18An accessor is a value that understands how to reach data within a larger data structure, 19independently from what you intend to do with it. Accessors allow you to read and write 20data and perform possibly-monadic traversals. By composing accessors, you can work with 21increasingly complex data structures. 22 23In case you have ever heard of \"lenses\", this is an OCaml implementation of that idea. 24" 25url { 26 src: 27 "https://ocaml.janestreet.com/ocaml-core/v0.14/files/accessor-v0.14.0.tar.gz" 28 checksum: [ 29 "sha256=9b93c84b9bafd079c11f149bce573a98faefe9f5c59c25f66f3970debc24962d" 30 "md5=17b942f0e4c1d0bb82a0223015aa4b1d" 31 ] 32}