Crates.io | persistent_rope |
lib.rs | persistent_rope |
version | 0.1.3 |
source | src |
created_at | 2018-03-02 14:46:54.256282 |
updated_at | 2020-07-16 14:10:36.478094 |
description | An immutable persistent rope data structure |
homepage | https://gitlab.com/nathanfaucett/rs-persistent_rope |
repository | https://gitlab.com/nathanfaucett/rs-persistent_rope.git |
max_upload_size | |
id | 53457 |
size | 28,016 |
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);
}