iterator: add xor support

This commit is contained in:
nym21
2025-02-22 14:06:43 +01:00
parent e63b42278c
commit 8c3f519016
7 changed files with 82 additions and 30 deletions
+1 -1
View File
@@ -447,7 +447,7 @@ where
let pushed_len = I::from(self.pushed_len());
let disk_len = Self::i_to_usize(disk_len)?;
while index < pushed_len {
f(((index + disk_len), self.get(index)?.map(Value::from).unwrap()))?;
f(((index + disk_len), self.get(index)?.unwrap()))?;
index = index + 1;
}