├── .gitignore ├── .travis.yml ├── CHANGES ├── Makefile ├── README.md ├── dune-project ├── lazy-trie.opam └── lib ├── dune ├── lazy_trie.ml └── lazy_trie.mli /.gitignore: -------------------------------------------------------------------------------- 1 | _build/ 2 | *~ 3 | .merlin 4 | *.install 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/ocaml-lazy-trie/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/ocaml-lazy-trie/HEAD/CHANGES -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/ocaml-lazy-trie/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Lazy prefix trees in OCaml 2 | -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 1.0) 2 | (name lazy-trie) 3 | -------------------------------------------------------------------------------- /lazy-trie.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/ocaml-lazy-trie/HEAD/lazy-trie.opam -------------------------------------------------------------------------------- /lib/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/ocaml-lazy-trie/HEAD/lib/dune -------------------------------------------------------------------------------- /lib/lazy_trie.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/ocaml-lazy-trie/HEAD/lib/lazy_trie.ml -------------------------------------------------------------------------------- /lib/lazy_trie.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/ocaml-lazy-trie/HEAD/lib/lazy_trie.mli --------------------------------------------------------------------------------