lsst.meas.extensions.astrometryNet  18.1.0-2-g31c43f9+3
astrometry_netContinued.py
Go to the documentation of this file.
1 from lsst.utils import continueClass
2 
3 from . import MultiIndex
4 
5 
6 @continueClass # noqa
7 class MultiIndex:
8  def __iter__(self):
9  """Get an iterator over the indices in a MultiIndex
10 
11  Do not modify the number or location of the indices while using the iterator.
12  """
13  for i in range(len(self)):
14  yield self[i]