1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
Rope
====
Ropes are a scalable string implementation: they are designed for
efficient operation that involve the string as a whole such as
concatenation and substring. This library implements ropes for OCaml
(it is rich enough to replace strings).
Version 0.6.2
Installation
------------
The easier way to install this library is to use [opam][]:
opam install rope
To compile the development version, you will need to install [dune][]
and then issue
dune build @install
Install with:
dune install
To run the tests, install the module [Benchmark][] and do
dune runtest
[opam]: http://opam.ocaml.org/
[dune]: https://github.com/ocaml/dune
[benchmark]: https://github.com/Chris00/ocaml-benchmark
Documentation
-------------
You can read the interface `rope.mli` [in this repository](src/rope.mli) or
[as HTML](http://chris00.github.io/ocaml-rope/doc/rope/Rope/).
|