Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 1010 Bytes

README.md

File metadata and controls

36 lines (25 loc) · 1010 Bytes

Project Status Build Status Crate Docs

rust-arae

Cursed data structures
Documentation hosted on docs.rs.

Experimental

Until otherwise noted, this library is experimental. Unsound issues should be assumed until fixed and verified

[dependencies]
arae = "0.2.0"

Example

use arae::{CurVec, CursedExt, Bounded};

// Create a new `CurVec` of length 10 with the elements 
// initialized via `Default::default`.
let mut vec = CurVec::new_with_default(10);

// Create two cursors pointing the the head of the vec.
let write_cursor = vec.hptr();
let read_cursor = vec.hptr();

*vec.get_mut(write_cursor) = 1;

assert_eq!(*vec.get(read_cursor), 1);