persistent_rope

Crates.iopersistent_rope
lib.rspersistent_rope
version0.1.3
sourcesrc
created_at2018-03-02 14:46:54.256282
updated_at2020-07-16 14:10:36.478094
descriptionAn immutable persistent rope data structure
homepagehttps://gitlab.com/nathanfaucett/rs-persistent_rope
repositoryhttps://gitlab.com/nathanfaucett/rs-persistent_rope.git
max_upload_size
id53457
size28,016
Nathan Faucett (nathanfaucett)

documentation

README

rs-persistent_rope

An immutable persistent rope data structure

extern crate persistent_rope;

use persistent_rope::Rope;

fn main() {
    let a: Rope = "Hello".into();
    let b = a + ", world!";
    println!("{:?}", b);
}
Commit count: 10

cargo fmt