2 releases

0.1.1 Sep 1, 2019
0.1.0 Sep 1, 2019

#2688 in Rust patterns

MIT license

17KB
413 lines

Build Status

disjoint-borrow

Disjoint borrows of slices.

Provides the DisjointSlice type, allowing disjoint borrows over slices by adding runtime checks. Immutable borrows are allowed to intersect with other immutable borrows, while mutable borrows may not intersect with any borrows.

Borrow tracking is implemented as type-level list. This has the advantage that no allocation is necessary, but also limits the number of disjoint borrows to a compile-time constant.

No-std compatible.

Example

use disjoint_borrow::DisjointSlice;

let mut array = [1, 2, 3, 4, 5];
let mut ds = DisjointSlice::new(&mut array);
let (mut ds, mut a) = ds.get_mut(0..2);
let (_, mut b) = ds.get_mut(3..5);

a[0] *= -1;
b[1] *= -1;

assert_eq!(a, &[-1, 2]);
assert_eq!(b, &[4, -5]);

License: MIT


lib.rs:

Disjoint borrows of slices.

Provides the DisjointSlice type, allowing disjoint borrows over slices by adding runtime checks. Immutable borrows are allowed to intersect with other immutable borrows, while mutable borrows may not intersect with any borrows.

Borrow tracking is implemented as type-level list. This has the advantage that no allocation is necessary, but also limits the number of disjoint borrows to a compile-time constant.

No-std compatible.

Example

use disjoint_borrow::DisjointSlice;

let mut array = [1, 2, 3, 4, 5];
let mut ds = DisjointSlice::new(&mut array);
let (mut ds, mut a) = ds.get_mut(0..2);
let (_, mut b) = ds.get_mut(3..5);

a[0] *= -1;
b[1] *= -1;

assert_eq!(a, &[-1, 2]);
assert_eq!(b, &[4, -5]);

No runtime deps