Serialize deferred operations

This commit is contained in:
Antonio Scandurra 2022-01-05 11:52:41 +01:00
parent d383ff30ce
commit 870fa5f278
4 changed files with 23 additions and 1 deletions

View file

@ -53,7 +53,7 @@ impl<T: Operation> OperationQueue<T> {
}
pub fn iter(&self) -> impl Iterator<Item = &T> {
self.0.cursor::<()>().map(|i| &i.0)
self.0.iter().map(|i| &i.0)
}
}