In python, I am trying to write a class that support two different kind of iterator. Roughly speaking, this object contains a matrix of data and I want to have two different kind of iterator to support row iteration and column iteration.
|
|
|
Is this what you're looking for?
You can use You can also move the iteration of the actual values into the class. I wasn't sure if you wanted to iterate over rows/columns (as shown) or the values in the rows/columns. |
||||
|
|
|
For example, suppose your matrix is square, held flattened up into a row-major list
|
|||||
|
|
Okay, so make two separate methods where each is a generator.
Your |
|||
|