opam-version: "2.0" maintainer: "Jane Street developers" authors: ["Jane Street Group, LLC"] homepage: "https://github.com/janestreet/splay_tree" bug-reports: "https://github.com/janestreet/splay_tree/issues" dev-repo: "git+https://github.com/janestreet/splay_tree.git" doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/splay_tree/index.html" license: "MIT" build: [ ["dune" "build" "-p" name "-j" jobs] ] depends: [ "ocaml" {>= "4.08.0"} "core_kernel" {>= "v0.13" & < "v0.14"} "ppx_jane" {>= "v0.13" & < "v0.14"} "dune" {>= "1.5.1"} ] synopsis: "A splay tree implementation" description: " Splay trees are binary search trees that move recently accessed nodes closer to the root for easier access. They have amortized O(log n)-time access for a large enough sequence of primitive operations. A splay trees may outperform other trees such as red-black trees when recently accessed items are more likely to be accessed in the near future. Notably, this splay tree implementation is parameterized by a reduction operation which lets you specify an extra accumulator value, which can then be searched by efficiently. " url { src: "https://ocaml.janestreet.com/ocaml-core/v0.13/files/splay_tree-v0.13.0.tar.gz" checksum: [ "sha256=728c6fa152989055082fe2775d19731d4af131bc67788e81ca93a5008ffbae75" "md5=fd926dcdef1c6db78f450687c7e40cde" ] }