Skip to content

Commit

Permalink
Bug 1330824 - Add IndexMut for nsStyleAutoArray. r=heycam
Browse files Browse the repository at this point in the history
MozReview-Commit-ID: 9EU8g4SLoHp
  • Loading branch information
Hiroyuki Ikezoe committed Jan 14, 2017
1 parent ce59a7e commit 2d19e67
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion components/style/gecko_bindings/sugar/ns_style_auto_array.rs
Expand Up @@ -7,7 +7,7 @@
use gecko_bindings::bindings::Gecko_EnsureStyleAnimationArrayLength;
use gecko_bindings::structs::nsStyleAutoArray;
use std::iter::{once, Chain, Once, IntoIterator};
use std::ops::Index;
use std::ops::{Index, IndexMut};
use std::slice::{Iter, IterMut};

impl<T> Index<usize> for nsStyleAutoArray<T> {
Expand All @@ -23,6 +23,18 @@ impl<T> Index<usize> for nsStyleAutoArray<T> {
}
}

impl<T> IndexMut<usize> for nsStyleAutoArray<T> {
fn index_mut(&mut self, index: usize) -> &mut T {
if index > self.len() {
panic!("out of range")
}
match index {
0 => &mut self.mFirstElement,
_ => &mut self.mOtherElements[index - 1],
}
}
}

impl<T> nsStyleAutoArray<T> {
/// Mutably iterate over the array elements.
pub fn iter_mut(&mut self) -> Chain<Once<&mut T>, IterMut<T>> {
Expand Down

0 comments on commit 2d19e67

Please sign in to comment.