package jane_rope

  1. Overview
  2. Docs
String representation with cheap concatenation.

Install

Dune Dependency

Authors

Maintainers

Sources

v0.17.0.tar.gz
sha256=3174a58e3ad8f2652ad569e9b8a5be03d2e173c955e422fdc870ec929144cdd0

Description

Published: 26 May 2024

README

"Rope"

A rope is a standard data structure that represents a single string as a tree of strings, allowing concatenation to do no work up front.

That is, a string formed by many Rope concatenations followed by a to_string needs only copy each input to the output once, whereas a string expression looking like a ^ b ^ c ^ ... ^ z must create an intermediate string for every concatenation, and will copy the original data into and out of short-lived temporary strings many times.

On the other hand, because String.concat [ s1; s2; s3; ... ] allocates a single string and copies the inputs into it, Rope is no improvement over that usage. Rope becomes useful when the construction of the sequence of strings is more complex -- a good example is prettyprinting an expression language, where you need to parenthesize subexpressions (appending a short string at both ends) and handle infix binary operators (appending two long strings both made up of many parts, with a short string in between).

Any operations that would produce a Rope longer than String.max_length raise instead. They are not marked with _exn on their names since (at least on 64-bit) this number is far in excess of the size of your memory, so isn't likely to come up in practice.

A more fully-featured implementation of the same idea is available in the zed library.

Dependencies (4)

  1. dune >= "3.11.0"
  2. ppx_jane >= "v0.17" & < "v0.18"
  3. base >= "v0.17" & < "v0.18"
  4. ocaml >= "5.1.0"

Dev Dependencies

None

Used by (2)

  1. re2 >= "v0.17.0"
  2. shuttle_http >= "0.10.0"

Conflicts

None

OCaml

Innovation. Community. Security.