an-rope

Crates.ioan-rope
lib.rsan-rope
version0.3.1
sourcesrc
created_at2016-12-29 17:21:35.200405
updated_at2017-02-10 17:49:05.556129
descriptionan rope for large text documents.
homepagehttps://github.com/hawkw/an-editor
repositoryhttps://github.com/hawkw/an-editor
max_upload_size
id7843
size649,681
Eliza Weisman (hawkw)

documentation

README

an rope

Build Status codecov Dependency Status Clippy Linting Result MIT License crates.io RustDoc documentation Master RustDoc

An immutable Rope data structure for storing large text documents. This implementation is a component of the an-editor project.

A rope is an efficient data structure for large strings. It's essentially a binary tree whose leaves are strings.

For more information, see the following resources:

compatibility

an-rope is built against the latest stable, beta, and nightly Rust releases, on macOS and Ubuntu. Some features rely on nightly Rust, and may not be available on other release channels.

cargo feature flags

  • tendril: use the tendril library to optimise performance for small strings.
  • rebalance: enable Rope rebalancing.
  • atomic: ensure Ropes are thread-safe (use Arc or atomic tendrils)
  • unstable: enable nightly Rust features. pass this flag if building on nightly Rust.
Commit count: 554

cargo fmt