mmut

Crates.iommut
lib.rsmmut
version0.1.0
sourcesrc
created_at2019-09-06 13:31:48.100392
updated_at2019-09-06 13:31:48.100392
descriptionmulti mut
homepage
repositoryhttps://github.com/lperlaki/mmut-rs
max_upload_size
id162771
size4,600
Giacomo Cariello (giacomocariello)

documentation

README

mMut

MutPair

Get mutalbe references to two locations in Collection by key.

use mmut::MutPair;
let mut v = vec![1, 2, 3, 4, 5];

let (a, b) = v.two_mut(1, 3).unwrap();
*a = 8;
*b = 7;


assert_eq!(v, vec![1, 8, 3, 7, 5]);
Commit count: 0

cargo fmt