this repo has no description
1opam-version: "2.0" 2maintainer: "Jane Street developers" 3authors: ["Jane Street Group, LLC"] 4homepage: "https://github.com/janestreet/splay_tree" 5bug-reports: "https://github.com/janestreet/splay_tree/issues" 6dev-repo: "git+https://github.com/janestreet/splay_tree.git" 7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/splay_tree/index.html" 8license: "MIT" 9build: [ 10 ["dune" "build" "-p" name "-j" jobs] 11] 12depends: [ 13 "ocaml" {>= "4.08.0"} 14 "core" {>= "v0.15" & < "v0.16"} 15 "ppx_jane" {>= "v0.15" & < "v0.16"} 16 "dune" {>= "2.0.0"} 17] 18synopsis: "A splay tree implementation" 19description: " 20Splay trees are binary search trees that move recently accessed nodes 21closer to the root for easier access. They have amortized O(log 22n)-time access for a large enough sequence of primitive operations. 23 24A splay trees may outperform other trees such as red-black trees when 25recently accessed items are more likely to be accessed in the near 26future. 27 28Notably, this splay tree implementation is parameterized by a 29reduction operation which lets you specify an extra accumulator value, 30which can then be searched by efficiently. 31" 32url { 33src: "https://ocaml.janestreet.com/ocaml-core/v0.15/files/splay_tree-v0.15.0.tar.gz" 34checksum: "sha256=0fa105bb09ea3eae1ec7d81e1326608a502c1bc3af0670afb564a9897efcd2e2" 35}