diff --git a/corelib/src/ops/range.cairo b/corelib/src/ops/range.cairo index 7fc7d46d5b7..df4f2a938e9 100644 --- a/corelib/src/ops/range.cairo +++ b/corelib/src/ops/range.cairo @@ -92,7 +92,7 @@ pub impl RangeOpImpl of RangeOp { } /// Represents an iterator located at `cur`, whose end is `end` (`cur <= end`). -#[derive(Clone, Drop)] +#[derive(Clone, Drop, PartialEq)] pub struct RangeIterator { /// The current value of the iterator. cur: T,