Skip to content

Instantly share code, notes, and snippets.

@mkandalf
Created January 12, 2015 19:01
Show Gist options
  • Save mkandalf/bd874d9ece0640ee8867 to your computer and use it in GitHub Desktop.
Save mkandalf/bd874d9ece0640ee8867 to your computer and use it in GitHub Desktop.
impl<T> IndexMut<u8> for [T] {
fn index_mut<'a>(&'a mut self, _index: &u8) -> &'a mut T {
self[_index as uint]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment