├── .gitignore ├── .travis.yml ├── CHANGES.md ├── LICENSE.md ├── README.md ├── dune ├── dune-project ├── gmap.ml ├── gmap.mli ├── gmap.opam └── tests.ml /.gitignore: -------------------------------------------------------------------------------- 1 | _build/ 2 | *.install 3 | .merlin 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesm/gmap/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesm/gmap/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesm/gmap/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesm/gmap/HEAD/README.md -------------------------------------------------------------------------------- /dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesm/gmap/HEAD/dune -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 1.0) 2 | (name gmap) 3 | -------------------------------------------------------------------------------- /gmap.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesm/gmap/HEAD/gmap.ml -------------------------------------------------------------------------------- /gmap.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesm/gmap/HEAD/gmap.mli -------------------------------------------------------------------------------- /gmap.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesm/gmap/HEAD/gmap.opam -------------------------------------------------------------------------------- /tests.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannesm/gmap/HEAD/tests.ml --------------------------------------------------------------------------------